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

Method iter

cranelift/entity/src/boxed_slice.rs:82–84  ·  view source on GitHub ↗

Iterate over all the keys and values in this map.

(&self)

Source from the content-addressed store, hash-verified

80
81 /// Iterate over all the keys and values in this map.
82 pub fn iter(&self) -> Iter<'_, K, V> {
83 Iter::new(self.elems.iter())
84 }
85
86 /// Iterate over all the keys and values in this map, mutable edition.
87 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {

Callers 3

valuesMethod · 0.45
into_iterMethod · 0.45
iter_revFunction · 0.45

Calls 1

newFunction · 0.50

Tested by 1

iter_revFunction · 0.36