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

pub struct SplitMut<'a, T: 'a, P> where P: FnMut(&T) -> bool {
    // some fields omitted
}

An iterator over the subslices of the vector which are separated by elements that match pred.

Trait Implementations

impl<'a, T, P> Iterator<&'a mut [T]> for SplitMut<'a, T, P> where P: FnMut(&T) -> bool

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

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

impl<'a, T, P> DoubleEndedIterator<&'a mut [T]> for SplitMut<'a, T, P> where P: FnMut(&T) -> bool

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