Get a reference to the keys in this leaf node.
(&self)
| 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> { |
no outgoing calls