(&mut self, index: usize)
| 66 | /// Get a mutable reference to a value by index. |
| 67 | #[inline] |
| 68 | pub fn get_value_mut(&mut self, index: usize) -> Option<&mut V> { |
| 69 | self.values.get_mut(index) |
| 70 | } |
| 71 | |
| 72 | /// Get the first key in the node. |
| 73 | #[inline] |
no test coverage detected