Get value for key */
| 126 | |
| 127 | /* Get value for key */ |
| 128 | PyObject* tree_get(BPlusTree *tree, PyObject *key) { |
| 129 | BPlusNode *leaf = tree_find_leaf(tree, key); |
| 130 | if (!leaf) return NULL; |
| 131 | return node_get(leaf, key); |
| 132 | } |
| 133 | |
| 134 | /* Insert into branch node */ |
| 135 | int node_insert_branch(BPlusNode *node, PyObject *key, BPlusNode *right_child, |
no test coverage detected