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

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

An iterator over subslices separated by elements that match a predicate function.

Trait Implementations

impl<'a, T, P> Clone for Split<'a, T, P> where P: Clone + FnMut(&T) -> bool

fn clone(&self) -> Split<'a, T, P>

fn clone_from(&mut self, source: &Self)

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

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

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

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

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