(&self)
| 242 | /// Iterate over all the keys and values in this map. |
| 243 | #[inline] |
| 244 | pub fn iter(&self) -> slice::Iter<'_, (K, V)> { |
| 245 | self.dense.iter() |
| 246 | } |
| 247 | |
| 248 | /// Iterate over all the keys and values in this map, mutable edition. |
| 249 | #[inline] |
no outgoing calls
no test coverage detected