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

Method readByte

unused/rangedecoder.cpp:184–189  ·  view source on GitHub ↗

Decode a byte without modelling */

Source from the content-addressed store, hash-verified

182
183/* Decode a byte without modelling */
184U8 RangeDecoder::readByte()
185{
186 U8 tmp = culshift(8);
187 update(1, tmp, 1u<<8);
188 return tmp;
189}
190
191/* Decode a short without modelling */
192U16 RangeDecoder::readShort()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected