Struct collections::slice::ChunksMut 1.0.0
[−]
[src]
pub struct ChunksMut<'a, T> where
T: 'a, { /* fields omitted */ }
An iterator over a slice in (non-overlapping) mutable chunks (size
elements at a time). 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.
Trait Implementations
impl<'a, T> Iterator for ChunksMut<'a, T>
[src]
type Item = &'a mut [T]
fn next(&mut self) -> Option<&'a mut [T]>
fn size_hint(&self) -> (usize, Option<usize>)
fn count(self) -> usize
fn nth(&mut self, n: usize) -> Option<&'a mut [T]>
fn last(self) -> Option<<ChunksMut<'a, T> as Iterator>::Item>
impl<'a, T> FusedIterator for ChunksMut<'a, T>
[src]
impl<'a, T> DoubleEndedIterator for ChunksMut<'a, T>
[src]
impl<'a, T> ExactSizeIterator for ChunksMut<'a, T>
[src]
impl<'a, T> Debug for ChunksMut<'a, T> where
T: 'a + Debug,
[src]
T: 'a + Debug,