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

Method readInt64

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

Source from the content-addressed store, hash-verified

49uint64_t StreamReader::readUInt64() { return readUnsigned<uint64_t>(); }
50
51int64_t StreamReader::readInt64() { return static_cast<int64_t>(readUInt64()); }
52
53std::string StreamReader::readString() {
54 std::string result;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected