Iterator over the elements in a [`SmallEntitySet`].
| 361 | |
| 362 | /// Iterator over the elements in a [`SmallEntitySet`]. |
| 363 | pub struct Iter<T, W, const N: usize> |
| 364 | where |
| 365 | T: EntityRef, |
| 366 | W: SmallSetWord, |
| 367 | { |
| 368 | current_word: W, |
| 369 | next_index: usize, |
| 370 | set: SmallEntitySet<T, W, N>, |
| 371 | } |
| 372 | |
| 373 | impl<T, W, const N: usize> Iterator for Iter<T, W, N> |
| 374 | where |
nothing calls this directly
no outgoing calls
no test coverage detected