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

Method write

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

Source from the content-addressed store, hash-verified

230 """Serializer for VAR_UINT64 type - variable-length encoded unsigned 64-bit integer."""
231
232 def write(self, write_context, value):
233 write_context.write_var_uint64(value)
234
235 def read(self, read_context):
236 return read_context.read_var_uint64()

Callers

nothing calls this directly

Calls 1

write_var_uint64Method · 0.45

Tested by

no test coverage detected