Inline functions for fast array access */
| 76 | |
| 77 | /* Inline functions for fast array access */ |
| 78 | static inline PyObject* node_get_key(BPlusNode *node, int index) { |
| 79 | return node->data[index]; |
| 80 | } |
| 81 | |
| 82 | static inline PyObject* node_get_value(BPlusNode *node, int index) { |
| 83 | return node->data[node->capacity + index]; |
no outgoing calls
no test coverage detected