MCPcopy Create free account
hub / github.com/AbyssEngine/AbyssEngineOld / readUInt64

Method readUInt64

src/Abyss/Streams/StreamReader.cpp:49–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47int32_t StreamReader::readInt32() { return static_cast<int32_t>(readUInt32()); }
48
49uint64_t StreamReader::readUInt64() { return readUnsigned<uint64_t>(); }
50
51int64_t StreamReader::readInt64() { return static_cast<int64_t>(readUInt64()); }
52

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected