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

Function node_get_value

python/bplustree_c_src/bplustree.h:82–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82static inline PyObject* node_get_value(BPlusNode *node, int index) {
83 return node->data[node->capacity + index];
84}
85
86static inline BPlusNode* node_get_child(BPlusNode *node, int index) {
87 return (BPlusNode*)node->data[node->capacity + index];

Callers 7

BPlusTreeIterator_nextFunction · 0.85
node_gc_opFunction · 0.85
node_destroyFunction · 0.85
node_clear_slotFunction · 0.85
node_insert_leafFunction · 0.85
node_deleteFunction · 0.85
node_getFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected