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

Method write

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

Source from the content-addressed store, hash-verified

150 """Serializer for VARINT32 type - variable-length encoded signed 32-bit integer."""
151
152 def write(self, write_context, value):
153 write_context.write_varint32(value)
154
155 def read(self, read_context):
156 return read_context.read_varint32()

Callers

nothing calls this directly

Calls 1

write_varint32Method · 0.80

Tested by

no test coverage detected