Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/fory
/ _encode_zigzag64
Function
_encode_zigzag64
python/pyfory/serializer.py:323–324 ·
view source on GitHub ↗
(value: int)
Source
from the content-addressed store, hash-verified
321
322
323
def
_encode_zigzag64(value: int) -> int:
324
return
(value << 1) ^ (value >> 63)
325
326
327
def
_decode_zigzag64(value: int) -> int:
Callers
2
_can_use_small_decimal_encoding
Function · 0.85
_write_decimal_parts
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected