MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / values_mut

Method values_mut

src/entity/sparse.rs:270–274  ·  view source on GitHub ↗
(
        &mut self,
    )

Source from the content-addressed store, hash-verified

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]

Callers 3

clearMethod · 0.45
runMethod · 0.45
remove_valueMethod · 0.45

Calls 2

mapMethod · 0.80
iter_mutMethod · 0.45

Tested by

no test coverage detected