| 127 | |
| 128 | template <typename Key, typename Pointer> |
| 129 | void SimpleBTreeIndex<Key, Pointer>::insertAfter(size_t i, Key k, Pointer p) { |
| 130 | pointers.insertAt(i, Element{k, p}); |
| 131 | } |
| 132 | |
| 133 | template <typename Key, typename Pointer> |
| 134 | size_t SimpleBTreeIndex<Key, Pointer>::indexLevel() const { |
no test coverage detected