Source code
Revision control
Copy as Markdown
Other Tools
class _UniffiConverterInt32(_UniffiConverterPrimitiveInt):
CLASS_NAME = "i32"
VALUE_MIN = -2**31
VALUE_MAX = 2**31
@staticmethod
def read(buf):
return buf.read_i32()
@staticmethod
def write(value, buf):
buf.write_i32(value)