(&mut self)
| 149 | /// Remove all entries from this map. |
| 150 | #[inline(always)] |
| 151 | pub fn clear(&mut self) { |
| 152 | self.elems.clear() |
| 153 | } |
| 154 | |
| 155 | /// Iterate over all the keys and values in this map. |
| 156 | pub fn iter(&self) -> Iter<'_, K, V> { |
no outgoing calls
no test coverage detected