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

Method read_byte

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

Source from the content-addressed store, hash-verified

359 return struct.unpack_from("<?", self._buffer.buffer, self._buffer.offset + offset)[0]
360
361 def read_byte(self, offset):
362 return struct.unpack_from("<B", self._buffer.buffer, self._buffer.offset + offset)[0]
363
364 def read_char(self, offset):
365 return chr(struct.unpack_from("<B", self._buffer.buffer, self._buffer.offset + offset)[0])

Callers 15

getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
getMethod · 0.45
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

no test coverage detected