Iterator over values in the B+ tree.
| 37 | |
| 38 | /// Iterator over values in the B+ tree. |
| 39 | pub struct ValueIterator<'a, K, V> { |
| 40 | items: ItemIterator<'a, K, V>, |
| 41 | } |
| 42 | |
| 43 | /// Optimized iterator over a range of key-value pairs in the B+ tree. |
| 44 | /// Uses tree navigation to find start, then linked list traversal for efficiency. |
nothing calls this directly
no outgoing calls
no test coverage detected