Struct Subspace :: sus :: collections :: ChunksMut
An iterator over mutable a slice in (non-overlapping) chunks (chunk_size
elements at a time), starting at the beginning of the slice.
When the slice len is not evenly divided by the chunk size, the last slice of the iteration will be the remainder.
This struct is created by the chunks_mut()
method on slices.