(&mut self)
| 248 | /// Iterate over all the keys and values in this map, mutable edition. |
| 249 | #[inline] |
| 250 | pub fn iter_mut(&mut self) -> slice::IterMut<'_, (K, V)> { |
| 251 | self.dense.iter_mut() |
| 252 | } |
| 253 | |
| 254 | /// Iterate over all the keys in this map. |
| 255 | #[inline] |
no outgoing calls
no test coverage detected