MCPcopy Create free account
hub / github.com/apache/fory / write

Method write

python/pyfory/_serializer.py:132–133  ·  view source on GitHub ↗
(self, write_context, value)

Source from the content-addressed store, hash-verified

130 """Serializer for INT64/VARINT64 type - uses variable-length encoding for xlang compatibility."""
131
132 def write(self, write_context, value):
133 write_context.write_varint64(value)
134
135 def read(self, read_context):
136 return read_context.read_varint64()

Callers

nothing calls this directly

Calls 1

write_varint64Method · 0.80

Tested by

no test coverage detected