Iterate over all the values in this map, mutable edition.
(&mut self)
| 174 | |
| 175 | /// Iterate over all the values in this map, mutable edition. |
| 176 | pub fn values_mut(&mut self) -> slice::IterMut<'_, V> { |
| 177 | self.elems.iter_mut() |
| 178 | } |
| 179 | |
| 180 | /// Resize the map to have `n` entries by adding default entries as needed. |
| 181 | pub fn resize(&mut self, n: usize) { |
no test coverage detected