Source code
Revision control
Copy as Markdown
Other Tools
class _UniffiConverterDouble(_UniffiConverterPrimitiveFloat):
@staticmethod
def read(buf):
return buf.read_double()
@staticmethod
def write(value, buf):
buf.write_double(value)