Expand description
Adds array_chunks on stable.
This used to be a nightly feature, now its a crate.
This is just a wrapper so you dont have to write x.as_chunks::<N>().0.into_iter().
Structs§
- Array
Chunks - An iterator over a slice in (non-overlapping) chunks (
Nelements at a time), starting at the beginning of the slice. - Array
Chunks Mut - An iterator over a slice in (non-overlapping) mutable chunks (
Nelements at a time), starting at the beginning of the slice.
Traits§
- Extension
Trait - Extension trait to call
ArrayChunks::newandArrayChunksMut::newon slices.