MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / ValueIterator

Class ValueIterator

rust/src/iteration.rs:39–41  ·  view source on GitHub ↗

Iterator over values in the B+ tree.

Source from the content-addressed store, hash-verified

37
38/// Iterator over values in the B+ tree.
39pub 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected