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

Method iter_mut

cranelift/entity/src/map.rs:161–163  ·  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

159
160 /// Iterate over all the keys and values in this map, mutable edition.
161 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
162 IterMut::new(self.elems.iter_mut())
163 }
164
165 /// Iterate over all the keys in this map.
166 pub fn keys(&self) -> Keys<K> {

Callers 6

notMethod · 0.45
insert_shuffleFunction · 0.45
partition_in_placeFunction · 0.45
allocate_innerMethod · 0.45
extendMethod · 0.45
values_mutMethod · 0.45

Calls 1

newFunction · 0.50

Tested by

no test coverage detected