(&mut self, key: &K)
| 26 | /// Get a mutable reference to a value by key from this leaf node. |
| 27 | #[inline] |
| 28 | pub fn get_mut(&mut self, key: &K) -> Option<&mut V> { |
| 29 | let index = self.binary_search_keys(key).ok()?; |
| 30 | self.get_value_mut(index) |
| 31 | } |
| 32 | |
| 33 | /// Returns the number of key-value pairs in this leaf. |
| 34 | #[inline] |