| 166 | } |
| 167 | |
| 168 | inline BOOL ByteStreamInArray::seek(const I64 position) |
| 169 | { |
| 170 | if ((0 <= position) && (position <= size)) |
| 171 | { |
| 172 | curr = position; |
| 173 | return TRUE; |
| 174 | } |
| 175 | return FALSE; |
| 176 | } |
| 177 | |
| 178 | inline BOOL ByteStreamInArray::seekEnd(const I64 distance) |
| 179 | { |
nothing calls this directly
no outgoing calls
no test coverage detected