(
&mut self,
)
| 268 | /// Iterate over all the values in this map, mutable edition. |
| 269 | #[inline] |
| 270 | pub fn values_mut( |
| 271 | &mut self, |
| 272 | ) -> impl DoubleEndedIterator<Item = &mut V> + ExactSizeIterator + '_ { |
| 273 | self.dense.iter_mut().map(|(_k, v)| v) |
| 274 | } |
| 275 | |
| 276 | /// Return an owning iterator over the values of the map. |
| 277 | #[inline] |
no test coverage detected