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

Method read_double

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

Source from the content-addressed store, hash-verified

811 struct.pack_into("<d", self.buf, wi, v)
812
813 def read_double(self):
814 self.ensure_read(8)
815 ri = self.ri
816 self.ri = ri + 8
817 return struct.unpack_from("<d", self.buf, ri)[0]
818
819 @staticmethod
820 def utf8_size(s):

Callers 11

read_bool_tagMethod · 0.95
read_long_tagMethod · 0.95
read_float_tagMethod · 0.95
read_double_tagMethod · 0.95
read_vector2_tagMethod · 0.95
read_vector3_tagMethod · 0.95
read_vector4_tagMethod · 0.95
read_quaternion_tagMethod · 0.95
read_vector2int_tagMethod · 0.95
read_vector3int_tagMethod · 0.95
test_basicMethod · 0.95

Calls 1

ensure_readMethod · 0.95

Tested by 1

test_basicMethod · 0.76