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

Method len

rust/src/node.rs:35–37  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

33 /// Returns the number of key-value pairs in this leaf.
34 #[inline]
35 pub fn len(&self) -> usize {
36 self.keys_len()
37 }
38
39 /// Get a reference to the keys in this leaf node.
40 pub fn keys(&self) -> &Vec<K> {

Callers 15

rebalance_childMethod · 0.45
rebalance_leafMethod · 0.45
rebalance_branchMethod · 0.45
check_node_invariantsMethod · 0.45
keys_lenMethod · 0.45
values_lenMethod · 0.45
remove_atMethod · 0.45
insertMethod · 0.45

Calls 1

keys_lenMethod · 0.80