MCPcopy Create free account
hub / github.com/LAStools/LAStools / getByte

Method getByte

LASzip/src/bytestreamin_array.hpp:137–146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135}
136
137inline U32 ByteStreamInArray::getByte()
138{
139 if (curr == size)
140 {
141 throw EOF;
142 }
143 U32 byte = data[curr];
144 curr++;
145 return byte;
146}
147
148inline void ByteStreamInArray::getBytes(U8* bytes, const I64 num_bytes)
149{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected