| 84 | } |
| 85 | |
| 86 | static inline BPlusNode* node_get_child(BPlusNode *node, int index) { |
| 87 | return (BPlusNode*)node->data[node->capacity + index]; |
| 88 | } |
| 89 | |
| 90 | static inline void node_set_key(BPlusNode *node, int index, PyObject *key) { |
| 91 | node->data[index] = key; |
no outgoing calls
no test coverage detected