Iterate over all the values in this map, mutable edition.
(&mut self)
| 107 | |
| 108 | /// Iterate over all the values in this map, mutable edition. |
| 109 | pub fn values_mut(&mut self) -> slice::IterMut<'_, V> { |
| 110 | self.elems.iter_mut() |
| 111 | } |
| 112 | |
| 113 | /// Get this map's underlying values as a slice. |
| 114 | pub fn as_values_slice(&self) -> &[V] { |