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

Method write

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

Source from the content-addressed store, hash-verified

110 """Serializer for INT32/VARINT32 type - uses variable-length encoding for xlang compatibility."""
111
112 def write(self, write_context, value):
113 write_context.write_varint32(value)
114
115 def read(self, read_context):
116 return read_context.read_varint32()

Callers

nothing calls this directly

Calls 1

write_varint32Method · 0.80

Tested by

no test coverage detected