Iterate over all the keys and values in this map, mutable edition.
(&mut self)
| 122 | |
| 123 | /// Iterate over all the keys and values in this map, mutable edition. |
| 124 | pub fn iter_mut(&mut self) -> IterMut<'_, K, V> { |
| 125 | IterMut::new(self.elems.iter_mut()) |
| 126 | } |
| 127 | |
| 128 | /// Remove all entries from this map. |
| 129 | pub fn clear(&mut self) { |