| 529 | c->set_position(i); |
| 530 | } |
| 531 | void init_child(int i, btree_node *c) { |
| 532 | set_child(i, c); |
| 533 | c->set_parent(this); |
| 534 | } |
| 535 | // Returns the position of the first value whose key is not less than k. |
| 536 | template <typename K> |
| 537 | SearchResult<int, is_key_compare_to::value> lower_bound( |
no test coverage detected