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

Class Iter

src/entity/set.rs:348–355  ·  view source on GitHub ↗

Iterator over the elements in an [`EntitySet`].

Source from the content-addressed store, hash-verified

346
347/// Iterator over the elements in an [`EntitySet`].
348pub struct Iter<'a, T>
349where
350 T: EntityRef,
351{
352 current_word: Word,
353 next_index: usize,
354 set: &'a EntitySet<T>,
355}
356
357impl<T> Iterator for Iter<'_, T>
358where

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected