| 225 | |
| 226 | template <typename Key, typename Data, typename Pointer> |
| 227 | void SimpleBTreeLeaf<Key, Data, Pointer>::remove(size_t i) { |
| 228 | elements.eraseAt(i); |
| 229 | } |
| 230 | |
| 231 | template <typename Key, typename Data, typename Pointer> |
| 232 | void SimpleBTreeLeaf<Key, Data, Pointer>::shiftLeft(SimpleBTreeLeaf& right, size_t count) { |
no test coverage detected