| 161 | } |
| 162 | |
| 163 | inline BOOL ByteStreamOutArray::seek(I64 position) |
| 164 | { |
| 165 | if ((0 <= position) && (position <= size)) |
| 166 | { |
| 167 | curr = position; |
| 168 | return TRUE; |
| 169 | } |
| 170 | return FALSE; |
| 171 | } |
| 172 | |
| 173 | inline BOOL ByteStreamOutArray::seekEnd() |
| 174 | { |
nothing calls this directly
no outgoing calls
no test coverage detected