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