| 465 | } |
| 466 | |
| 467 | void indexInsertAfter(Index& index, size_t i, Key k, Pointer p) { |
| 468 | index.insertAfter(i, k, p); |
| 469 | } |
| 470 | |
| 471 | size_t indexLevel(Index const& index) { |
| 472 | return index.indexLevel(); |
nothing calls this directly
no test coverage detected