| 88 | } |
| 89 | |
| 90 | static inline void node_set_key(BPlusNode *node, int index, PyObject *key) { |
| 91 | node->data[index] = key; |
| 92 | } |
| 93 | |
| 94 | static inline void node_set_value(BPlusNode *node, int index, PyObject *value) { |
| 95 | node->data[node->capacity + index] = value; |
no outgoing calls
no test coverage detected