MCPcopy Create free account
hub / github.com/culvertsoft/mgen / readByte

Function readByte

mgen-cpplib/src/main/cpp/mgen/serialization/VarInt.h:90–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88
89template<typename Stream>
90inline unsigned char readByte(Stream& in) {
91 unsigned char out;
92 in.read(&out, 1);
93 return out;
94}
95
96template<typename Stream>
97inline void writeSigned64(long long value, Stream& out) {

Callers 5

readUnsigned64Function · 0.85
readUnsigned32Function · 0.85
TakeMethod · 0.85
readMethod · 0.85
readTagMethod · 0.85

Calls 1

readMethod · 0.45

Tested by

no test coverage detected