(&self)
| 262 | #[inline] |
| 263 | #[must_use] |
| 264 | pub fn values(&self) -> impl DoubleEndedIterator<Item = &V> + ExactSizeIterator + '_ { |
| 265 | self.dense.iter().map(|(_k, v)| v) |
| 266 | } |
| 267 | |
| 268 | /// Iterate over all the values in this map, mutable edition. |
| 269 | #[inline] |
no test coverage detected