| 501 | // be a leaf. |
| 502 | bool is_root() const { return parent()->leaf(); } |
| 503 | void make_root() { |
| 504 | assert(parent()->is_root()); |
| 505 | set_parent(parent()->parent()); |
| 506 | } |
| 507 | |
| 508 | // Getters for the key/value at position i in the node. |
| 509 | const key_type& key(int i) const { return params_type::key(slot(i)); } |
no test coverage detected