Iterate over all keys in order.
| 10 | |
| 11 | /// Iterate over all keys in order. |
| 12 | pub struct Keys<K: EntityRef> { |
| 13 | range: Range<usize>, |
| 14 | marker: PhantomData<K>, |
| 15 | } |
| 16 | |
| 17 | impl<K: EntityRef> Keys<K> { |
| 18 | /// Create a `Keys` iterator that visits `len` entities starting from 0. |
nothing calls this directly
no outgoing calls
no test coverage detected