MCPcopy Create free account
hub / github.com/catboost/catboost / ReadVarInt64

Function ReadVarInt64

library/cpp/yson/varint.cpp:65–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63 }
64
65 int ReadVarInt64(IInputStream* input, i64* value) {
66 ui64 varInt;
67 int bytesRead = ReadVarUInt64(input, &varInt);
68 *value = ZigZagDecode64(varInt);
69 return bytesRead;
70 }
71
72} // namespace NYson

Callers

nothing calls this directly

Calls 2

ReadVarUInt64Function · 0.85
ZigZagDecode64Function · 0.70

Tested by

no test coverage detected