MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / read_uint64

Method read_uint64

projects/Python/proto/fbe.py:391–392  ·  view source on GitHub ↗
(self, offset)

Source from the content-addressed store, hash-verified

389 return struct.unpack_from("<q", self._buffer.buffer, self._buffer.offset + offset)[0]
390
391 def read_uint64(self, offset):
392 return struct.unpack_from("<Q", self._buffer.buffer, self._buffer.offset + offset)[0]
393
394 def read_uint64_be(self, offset):
395 return struct.unpack_from(">Q", self._buffer.buffer, self._buffer.offset + offset)[0]

Callers 8

getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
getMethod · 0.45

Calls

no outgoing calls

Tested by 2

getMethod · 0.36
getMethod · 0.36