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