(self)
| 277 | #[inline] |
| 278 | #[must_use] |
| 279 | pub fn into_values(self) -> impl DoubleEndedIterator<Item = V> + ExactSizeIterator { |
| 280 | self.dense.into_iter().map(|(_k, v)| v) |
| 281 | } |
| 282 | |
| 283 | /// Scan through each key-value pair in the map and keep those where the |
| 284 | /// closure `keep` returns `true`. |