Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/catboost/catboost
/ WriteVarInt64Impl
Function
WriteVarInt64Impl
library/cpp/yt/coding/varint-inl.h:113–116 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
111
112
template <class TOutput>
113
Y_FORCE_INLINE int WriteVarInt64Impl(TOutput output, i64 value)
114
{
115
return WriteVarUint64(output, ZigZagEncode64(value));
116
}
117
118
} // namespace NDetail
119
Callers
1
WriteVarInt64
Function · 0.85
Calls
2
WriteVarUint64
Function · 0.85
ZigZagEncode64
Function · 0.70
Tested by
no test coverage detected