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