MCPcopy Create free account
hub / github.com/LASzip/LASzip / seek

Method seek

src/bytestreamin_array.hpp:168–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166}
167
168inline 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
178inline BOOL ByteStreamInArray::seekEnd(const I64 distance)
179{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected