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

Function node_set_value

python/bplustree_c_src/bplustree.h:94–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92}
93
94static inline void node_set_value(BPlusNode *node, int index, PyObject *value) {
95 node->data[node->capacity + index] = value;
96}
97
98static inline void node_set_child(BPlusNode *node, int index, BPlusNode *child) {
99 node->data[node->capacity + index] = (PyObject*)child;

Callers 3

node_clear_slotFunction · 0.85
node_insert_leafFunction · 0.85
node_deleteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected