Struct Subspace :: sus :: collections :: RChunksMut

template <class ItemT>
struct RChunksMut final
{ ... };

An iterator over a mutable slice in (non-overlapping) chunks (chunk_size elements at a time), starting at the end 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 rchunks_mut() method on slices.

Methods

sus::iter::ExactSizeIterator trait.

auto next() -> Option<sus::collections::RChunksMut::Item>
auto next_back() -> Option<sus::collections::RChunksMut::Item>
auto size_hint() const -> SizeHint