Struct collections::slice::RSplitNMutExperimental [-]  [+] [src]

pub struct RSplitNMut<'a, T: 'a, P> {
    // some fields omitted
}

An iterator over subslices separated by elements that match a predicate function, limited to a given number of splits, starting from the end of the slice.

Trait Implementations

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

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

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

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