Iterator over keys in the B+ tree.
| 32 | |
| 33 | /// Iterator over keys in the B+ tree. |
| 34 | pub struct KeyIterator<'a, K, V> { |
| 35 | items: ItemIterator<'a, K, V>, |
| 36 | } |
| 37 | |
| 38 | /// Iterator over values in the B+ tree. |
| 39 | pub struct ValueIterator<'a, K, V> { |
nothing calls this directly
no outgoing calls
no test coverage detected