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

Method values

rust/src/node.rs:45–47  ·  view source on GitHub ↗

Get a reference to the values in this leaf node.

(&self)

Source from the content-addressed store, hash-verified

43
44 /// Get a reference to the values in this leaf node.
45 pub fn values(&self) -> &Vec<V> {
46 &self.values
47 }
48
49 /// Get a mutable reference to the values in this leaf node.
50 pub fn values_mut(&mut self) -> &mut Vec<V> {

Callers 1

test_values_iteratorFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_values_iteratorFunction · 0.36