Type Alias Chunks

Source
pub type Chunks<'a, T = Entity> = UniqueEntityEquivalentSliceIter<'a, T, Chunks<'a, T>>;
Expand description

An iterator over a slice in (non-overlapping) chunks (chunk_size elements at a time), starting at the beginning of the slice.

This struct is created by UniqueEntityEquivalentSlice::chunks.

Aliased Typeยง

struct Chunks<'a, T = Entity> { /* private fields */ }