Struct core::slice::ChunksMutExperimental [-]  [+] [src]

pub struct ChunksMut<'a, T: 'a> {
    // some 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.

Trait Implementations

impl<'a, T> Iterator<&'a mut [T]> for ChunksMut<'a, T>

fn next(&mut self) -> Option<&'a mut [T]>

fn size_hint(&self) -> (uint, Option<uint>)

impl<'a, T> DoubleEndedIterator<&'a mut [T]> for ChunksMut<'a, T>

fn next_back(&mut self) -> Option<&'a mut [T]>