MCPcopy Create free account
hub / github.com/e2wugui/zeze / skip_bytes4

Method skip_bytes4

python/zeze/buffer.py:915–919  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

913 self.skip(n)
914
915 def skip_bytes4(self):
916 n = self.read_int4()
917 if n < 0:
918 raise Exception(f"invalid length for skip_bytes4: {n} at {self.ri}/{self.wi}")
919 self.skip(n)
920
921 def read_bytebuffer(self):
922 # 会推进ri, 但是返回的ByteBuffer和原来的共享内存

Callers

nothing calls this directly

Calls 2

read_int4Method · 0.95
skipMethod · 0.95

Tested by

no test coverage detected