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

Method get_uint64

python/graphscope/client/archive.py:91–95  ·  view source on GitHub ↗

Peek a uint64.

(self)

Source from the content-addressed store, hash-verified

89 return i
90
91 def get_uint64(self):
92 """Peek a uint64."""
93 size_of_uint64 = struct.calcsize("Q")
94 Q = struct.unpack("Q", self.get_block(size_of_uint64))[0]
95 return Q
96
97 def get_uint32(self):
98 """Peek a uint64."""

Callers 6

_get_node_id_cacheMethod · 0.80
_get_node_attr_cacheMethod · 0.80
_get_succ_cacheMethod · 0.80
_get_pred_cacheMethod · 0.80
_get_succ_attr_cacheMethod · 0.80
_get_pred_attr_cacheMethod · 0.80

Calls 2

get_blockMethod · 0.95
unpackMethod · 0.45

Tested by

no test coverage detected