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