| 176 | } |
| 177 | |
| 178 | inline BOOL ByteStreamInArray::seekEnd(const I64 distance) |
| 179 | { |
| 180 | if ((0 <= distance) && (distance <= size)) |
| 181 | { |
| 182 | curr = size - distance; |
| 183 | return TRUE; |
| 184 | } |
| 185 | return FALSE; |
| 186 | } |
| 187 | |
| 188 | inline ByteStreamInArrayLE::ByteStreamInArrayLE() : ByteStreamInArray() |
| 189 | { |
nothing calls this directly
no outgoing calls
no test coverage detected