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

Class KeyIterator

rust/src/iteration.rs:34–36  ·  view source on GitHub ↗

Iterator over keys in the B+ tree.

Source from the content-addressed store, hash-verified

32
33/// Iterator over keys in the B+ tree.
34pub struct KeyIterator<'a, K, V> {
35 items: ItemIterator<'a, K, V>,
36}
37
38/// Iterator over values in the B+ tree.
39pub struct ValueIterator<'a, K, V> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected