Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/apache/cassandra-python-driver
/ write_bytesmap
Function
write_bytesmap
cassandra/protocol.py:1415–1419 ·
view source on GitHub ↗
(f, bytesmap)
Source
from the content-addressed store, hash-verified
1413
1414
1415
def
write_bytesmap(f, bytesmap):
1416
write_short(f, len(bytesmap))
1417
for
k, v in bytesmap.items():
1418
write_string(f, k)
1419
write_value(f, v)
1420
1421
1422
def
read_stringmultimap(f):
Callers
1
encode_message
Method · 0.85
Calls
4
write_short
Function · 0.85
write_string
Function · 0.85
write_value
Function · 0.85
items
Method · 0.45
Tested by
no test coverage detected