Home
last modified time | relevance | path

Searched refs:IterMut (Results 1 – 12 of 12) sorted by relevance

/wasmtime-44.0.1/cranelift/entity/src/
H A Diter.rs50 pub struct IterMut<'a, K: EntityRef, V> struct
54 enumerate: Enumerate<slice::IterMut<'a, V>>, argument
58 impl<'a, K: EntityRef, V> IterMut<'a, K, V> { impl
61 pub fn new(iter: slice::IterMut<'a, V>) -> Self { in new()
69 impl<'a, K: EntityRef, V> Iterator for IterMut<'a, K, V> { implementation
81 impl<'a, K: EntityRef, V> DoubleEndedIterator for IterMut<'a, K, V> { implementation
87 impl<'a, K: EntityRef, V> ExactSizeIterator for IterMut<'a, K, V> {} implementation
H A Dboxed_slice.rs4 use crate::iter::{Iter, IterMut};
77 pub fn values_mut(&mut self) -> slice::IterMut<'_, V> { in values_mut()
87 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> { in iter_mut()
88 IterMut::new(self.elems.iter_mut()) in iter_mut()
137 type IntoIter = IterMut<'a, K, V>;
140 IterMut::new(self.elems.iter_mut()) in into_iter()
H A Dprimary.rs4 use crate::iter::{IntoIter, Iter, IterMut};
109 pub fn values_mut(&mut self) -> slice::IterMut<'_, V> { in values_mut()
124 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> { in iter_mut()
125 IterMut::new(self.elems.iter_mut()) in iter_mut()
307 type IntoIter = IterMut<'a, K, V>;
310 IterMut::new(self.elems.iter_mut()) in into_iter()
H A Dmap.rs4 use crate::iter::{Iter, IterMut};
161 pub fn iter_mut(&mut self) -> IterMut<'_, K, V> { in iter_mut()
162 IterMut::new(self.elems.iter_mut()) in iter_mut()
176 pub fn values_mut(&mut self) -> slice::IterMut<'_, V> { in values_mut()
H A Dlib.rs283 pub use self::iter::{IntoIter, Iter, IterMut};
/wasmtime-44.0.1/crates/environ/src/collections/
H A Dprimary_map.rs142 pub fn values_mut(&mut self) -> core::slice::IterMut<'_, V> { in values_mut()
157 pub fn iter_mut(&mut self) -> cranelift_entity::IterMut<'_, K, V> { in iter_mut()
287 type IntoIter = cranelift_entity::IterMut<'a, K, V>;
H A Dhash_map.rs160 pub fn iter_mut(&mut self) -> inner::IterMut<'_, K, V> { in iter_mut()
239 type IntoIter = inner::IterMut<'a, K, V>;
H A Dsecondary_map.rs103 pub fn iter_mut(&mut self) -> cranelift_entity::IterMut<'_, K, V> { in iter_mut()
118 pub fn values_mut(&mut self) -> core::slice::IterMut<'_, V> { in values_mut()
H A Dindex_map.rs184 pub fn iter_mut(&mut self) -> inner::IterMut<'_, K, V> { in iter_mut()
793 type IntoIter = inner::IterMut<'a, K, V>;
/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Djumptable.rs10 use core::slice::{Iter, IterMut};
77 pub fn iter_mut(&mut self) -> IterMut<'_, BlockCall> { in iter_mut()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dvalues.rs7 use core::slice::{Iter, IterMut};
361 dst: &mut IterMut<'_, MaybeUninit<ValRaw>>, in lower()
895 dst: &mut IterMut<'_, MaybeUninit<ValRaw>>, in lower()
1193 fn next_mut<'a>(dst: &mut IterMut<'a, MaybeUninit<ValRaw>>) -> &'a mut MaybeUninit<ValRaw> { in next_mut()
/wasmtime-44.0.1/crates/core/src/alloc/
H A Dvec.rs407 type IntoIter = core::slice::IterMut<'a, T>;