MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / IntoIter

Class IntoIter

src/entity/iter.rs:172–175  ·  view source on GitHub ↗

Iterator over all the keys and values of an entity map.

Source from the content-addressed store, hash-verified

170
171/// Iterator over all the keys and values of an entity map.
172pub struct IntoIter<K: EntityRef, V> {
173 enumerate: Enumerate<vec::IntoIter<V>>,
174 marker: PhantomData<K>,
175}
176
177impl<K: EntityRef, V> IntoIter<K, V> {
178 /// Create an `IntoIter` iterator that visits the keys and values of `iter`.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected