MCPcopy 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
1415def 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
1422def read_stringmultimap(f):

Callers 1

encode_messageMethod · 0.85

Calls 4

write_shortFunction · 0.85
write_stringFunction · 0.85
write_valueFunction · 0.85
itemsMethod · 0.45

Tested by

no test coverage detected