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

Method keys

rust/src/node.rs:40–42  ·  view source on GitHub ↗

Get a reference to the keys in this leaf node.

(&self)

Source from the content-addressed store, hash-verified

38
39 /// Get a reference to the keys in this leaf node.
40 pub fn keys(&self) -> &Vec<K> {
41 &self.keys
42 }
43
44 /// Get a reference to the values in this leaf node.
45 pub fn values(&self) -> &Vec<V> {

Calls

no outgoing calls