MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / iter_mut

Method iter_mut

cranelift/entity/src/boxed_slice.rs:87–89  ·  view source on GitHub ↗

Iterate over all the keys and values in this map, mutable edition.

(&mut self)

Source from the content-addressed store, hash-verified

85
86 /// Iterate over all the keys and values in this map, mutable edition.
87 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
88 IterMut::new(self.elems.iter_mut())
89 }
90
91 /// Returns the last element that was inserted in the map.
92 pub fn last(&self) -> Option<&V> {

Callers 4

values_mutMethod · 0.45
into_iterMethod · 0.45
iterFunction · 0.45
iter_revFunction · 0.45

Calls 1

newFunction · 0.50

Tested by 2

iterFunction · 0.36
iter_revFunction · 0.36