Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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_tag
Method · 0.95
read_long_tag
Method · 0.95
read_float_tag
Method · 0.95
read_double_tag
Method · 0.95
read_vector2_tag
Method · 0.95
read_vector3_tag
Method · 0.95
read_vector4_tag
Method · 0.95
read_quaternion_tag
Method · 0.95
read_vector2int_tag
Method · 0.95
read_vector3int_tag
Method · 0.95
test_basic
Method · 0.95
Calls
1
ensure_read
Method · 0.95
Tested by
1
test_basic
Method · 0.76