MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / node_set_key

Function node_set_key

python/bplustree_c_src/bplustree.h:90–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90static inline void node_set_key(BPlusNode *node, int index, PyObject *key) {
91 node->data[index] = key;
92}
93
94static inline void node_set_value(BPlusNode *node, int index, PyObject *value) {
95 node->data[node->capacity + index] = value;

Callers 5

tree_insertFunction · 0.85
node_insert_branchFunction · 0.85
node_clear_slotFunction · 0.85
node_insert_leafFunction · 0.85
node_deleteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected