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

Method seekEnd

src/bytestreamin_array.hpp:178–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178inline 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
188inline ByteStreamInArrayLE::ByteStreamInArrayLE() : ByteStreamInArray()
189{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected