(&mut self)
| 123 | /// Iterate over all the keys and values in this map, mutable edition. |
| 124 | #[inline] |
| 125 | pub fn iter_mut(&mut self) -> IterMut<'_, K, V> { |
| 126 | IterMut::new(self.elems.iter_mut()) |
| 127 | } |
| 128 | |
| 129 | /// Remove all entries from this map. |
| 130 | #[inline] |
no outgoing calls
no test coverage detected