MCPcopy 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
323def _encode_zigzag64(value: int) -> int:
324 return (value << 1) ^ (value >> 63)
325
326
327def _decode_zigzag64(value: int) -> int:

Callers 2

_write_decimal_partsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected