| /wasmtime-44.0.1/cranelift/entity/src/ |
| H A D | iter.rs | 90 pub struct IntoIter<K: EntityRef, V> { struct 91 enumerate: Enumerate<vec::IntoIter<V>>, argument 95 impl<K: EntityRef, V> IntoIter<K, V> { argument 98 pub fn new(iter: vec::IntoIter<V>) -> Self { in new() 106 impl<K: EntityRef, V> Iterator for IntoIter<K, V> { implementation 118 impl<K: EntityRef, V> DoubleEndedIterator for IntoIter<K, V> { implementation 124 impl<K: EntityRef, V> ExactSizeIterator for IntoIter<K, V> {} implementation
|
| H A D | primary.rs | 4 use crate::iter::{IntoIter, Iter, IterMut}; 283 type IntoIter = IntoIter<K, V>; typedef 285 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 286 IntoIter::new(self.elems.into_iter()) in into_iter() 295 type IntoIter = Iter<'a, K, V>; typedef 297 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 307 type IntoIter = IterMut<'a, K, V>; typedef 309 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | boxed_slice.rs | 125 type IntoIter = Iter<'a, K, V>; typedef 127 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 137 type IntoIter = IterMut<'a, K, V>; typedef 139 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | sparse.rs | 236 type IntoIter = slice::Iter<'a, V>; typedef 238 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | lib.rs | 283 pub use self::iter::{IntoIter, Iter, IterMut};
|
| /wasmtime-44.0.1/crates/environ/src/collections/ |
| H A D | primary_map.rs | 265 type IntoIter = cranelift_entity::IntoIter<K, V>; typedef 266 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 276 type IntoIter = cranelift_entity::Iter<'a, K, V>; typedef 277 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 287 type IntoIter = cranelift_entity::IterMut<'a, K, V>; typedef 288 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | hash_map.rs | 229 type IntoIter = inner::Iter<'a, K, V>; typedef 231 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 239 type IntoIter = inner::IterMut<'a, K, V>; typedef 241 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 249 type IntoIter = inner::IntoIter<K, V>; typedef 251 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | index_map.rs | 543 pub fn sorted_by<F>(self, cmp: F) -> inner::IntoIter<K, V> in sorted_by() 576 pub fn sorted_unstable_by<F>(self, cmp: F) -> inner::IntoIter<K, V> in sorted_unstable_by() 784 type IntoIter = inner::Iter<'a, K, V>; typedef 786 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 793 type IntoIter = inner::IterMut<'a, K, V>; typedef 795 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 802 type IntoIter = inner::IntoIter<K, V>; typedef 804 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | btree_map.rs | 213 type IntoIter = BTreeMapIter<'a, K, V>; typedef 215 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 250 type IntoIter = BTreeMapIterMut<'a, K, V>; typedef 252 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 294 type IntoIter = BTreeMapIntoIter<K, V>; typedef 296 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| /wasmtime-44.0.1/crates/core/src/alloc/ |
| H A D | vec.rs | 387 type IntoIter = std_alloc::vec::IntoIter<T>; typedef 389 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 397 type IntoIter = core::slice::Iter<'a, T>; typedef 399 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 407 type IntoIter = core::slice::IterMut<'a, T>; typedef 409 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| /wasmtime-44.0.1/cranelift/bitset/src/ |
| H A D | scalar.rs | 498 type IntoIter = Iter<T>; typedef 501 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 512 type IntoIter = Iter<T>; typedef 515 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| H A D | compound.rs | 559 type IntoIter = Iter<'a, T>; typedef 562 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| /wasmtime-44.0.1/cranelift/isle/isle/isle_examples/link/ |
| H A D | multi_extractor_main.rs | 43 type IntoIter = It; typedef
|
| H A D | multi_constructor_main.rs | 34 type IntoIter = It; typedef
|
| /wasmtime-44.0.1/crates/wasi-common/src/ |
| H A D | random.rs | 5 cycle: std::iter::Cycle<std::vec::IntoIter<u8>>,
|
| /wasmtime-44.0.1/crates/wasi/src/ |
| H A D | random.rs | 91 cycle: std::iter::Cycle<std::vec::IntoIter<u8>>,
|
| /wasmtime-44.0.1/crates/wasi/src/p2/ |
| H A D | ip_name_lookup.rs | 18 Done(Result<vec::IntoIter<IpAddress>, SocketError>),
|
| H A D | filesystem.rs | 415 type IntoIter = Box<dyn Iterator<Item = Self::Item> + Send>; typedef 417 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| /wasmtime-44.0.1/cranelift/codegen/src/ |
| H A D | opts.rs | 124 type IntoIter = Self; typedef 183 type IntoIter = Self; typedef
|
| /wasmtime-44.0.1/pulley/src/ |
| H A D | regs.rs | 270 type IntoIter = UpperRegSetIntoIter<R>; typedef 272 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
| /wasmtime-44.0.1/crates/fuzzing/src/generators/gc_ops/ |
| H A D | types.rs | 57 = std::option::IntoIter<TypeId> 88 = std::vec::IntoIter<RecGroupId>
|
| /wasmtime-44.0.1/crates/environ/src/component/ |
| H A D | types.rs | 782 I::IntoIter: ExactSizeIterator, in variant() 905 I::IntoIter: ExactSizeIterator, in new()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | type_registry.rs | 123 I::IntoIter: ExactSizeIterator, in register_and_canonicalize_types()
|
| /wasmtime-44.0.1/cranelift/codegen/src/ir/ |
| H A D | layout.rs | 394 type IntoIter = Blocks<'f>; typedef
|
| /wasmtime-44.0.1/crates/environ/src/fact/ |
| H A D | trampoline.rs | 4373 I::IntoIter: ExactSizeIterator, in variant_info()
|