Get an iterator over the values in the map. The iteration order is entirely determined by the preceding sequence of `insert` and `remove` operations. In particular, if no elements were removed, this is the insertion order.
(&self)
| 195 | /// `remove` operations. In particular, if no elements were removed, this is the insertion |
| 196 | /// order. |
| 197 | pub fn values(&self) -> slice::Iter<'_, V> { |
| 198 | self.dense.iter() |
| 199 | } |
| 200 | |
| 201 | /// Get the values as a slice. |
| 202 | pub fn as_slice(&self) -> &[V] { |