MCPcopy Create free account
hub / github.com/alibaba/GraphScope / get_int

Method get_int

python/graphscope/client/archive.py:85–89  ·  view source on GitHub ↗

Peek a int.

(self)

Source from the content-addressed store, hash-verified

83 return string
84
85 def get_int(self):
86 """Peek a int."""
87 size_of_int = struct.calcsize("i")
88 i = struct.unpack("i", self.get_block(size_of_int))[0]
89 return i
90
91 def get_uint64(self):
92 """Peek a uint64."""

Callers 9

decode_numpyFunction · 0.95
decode_dataframeFunction · 0.95
ComputeMethod · 0.45
ComputeMethod · 0.45
ComputeMethod · 0.45
ComputeMethod · 0.45
ComputeMethod · 0.45
PEvalMethod · 0.45
IncEvalMethod · 0.45

Calls 2

get_blockMethod · 0.95
unpackMethod · 0.45

Tested by 7

ComputeMethod · 0.36
ComputeMethod · 0.36
ComputeMethod · 0.36
ComputeMethod · 0.36
ComputeMethod · 0.36
PEvalMethod · 0.36
IncEvalMethod · 0.36