Struct std::slice::MutSplits[src]

pub struct MutSplits<'a, T> {
    // some fields omitted
}

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

Trait Implementations

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

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

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

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

fn chain<U: Iterator<&'a mut [T]>>(self, U) -> Chain<MutSplits<'a, T>, U>

fn zip<B, U: Iterator<B>>(self, U) -> Zip<MutSplits<'a, T>, U>

fn map<B>(self, |&'a mut [T]|: 'r -> B) -> Map<'r, &'a mut [T], B, MutSplits<'a, T>>

fn filter<'a, T>(self, |&&'a mut [T]|: 'r -> bool) -> Filter<'r, &'a mut [T], MutSplits<'a, T>>

fn filter_map<B>(self, |&'a mut [T]|: 'r -> Option<B>) -> FilterMap<'r, &'a mut [T], B, MutSplits<'a, T>>

fn enumerate<'a, T>(self) -> Enumerate<MutSplits<'a, T>>

fn peekable<'a, T>(self) -> Peekable<&'a mut [T], MutSplits<'a, T>>

fn skip_while<'a, T>(self, |&&'a mut [T]|: 'r -> bool) -> SkipWhile<'r, &'a mut [T], MutSplits<'a, T>>

fn take_while<'a, T>(self, |&&'a mut [T]|: 'r -> bool) -> TakeWhile<'r, &'a mut [T], MutSplits<'a, T>>

fn skip<'a, T>(self, uint) -> Skip<MutSplits<'a, T>>

fn take<'a, T>(self, uint) -> Take<MutSplits<'a, T>>

fn scan<St, B>(self, St, |&mut St, &'a mut [T]|: 'r -> Option<B>) -> Scan<'r, &'a mut [T], B, MutSplits<'a, T>, St>

fn flat_map<B, U: Iterator<B>>(self, |&'a mut [T]|: 'r -> U) -> FlatMap<'r, &'a mut [T], MutSplits<'a, T>, U>

fn fuse<'a, T>(self) -> Fuse<MutSplits<'a, T>>

fn inspect<'a, T>(self, |&&'a mut [T]|: 'r) -> Inspect<'r, &'a mut [T], MutSplits<'a, T>>

fn by_ref<'a, T>(&'r mut self) -> ByRef<'r, MutSplits<'a, T>>

fn advance<'a, T>(&mut self, |&'a mut [T]| -> bool) -> bool

fn collect<B: FromIterator<&'a mut [T]>>(&mut self) -> B

fn nth<'a, T>(&mut self, uint) -> Option<&'a mut [T]>

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

fn fold<B>(&mut self, B, |B, &'a mut [T]| -> B) -> B

fn count<'a, T>(&mut self) -> uint

fn all<'a, T>(&mut self, |&'a mut [T]| -> bool) -> bool

fn any<'a, T>(&mut self, |&'a mut [T]| -> bool) -> bool

fn find<'a, T>(&mut self, |&&'a mut [T]| -> bool) -> Option<&'a mut [T]>

fn position<'a, T>(&mut self, |&'a mut [T]| -> bool) -> Option<uint>

fn max_by<B: Ord>(&mut self, |&&'a mut [T]| -> B) -> Option<&'a mut [T]>

fn min_by<B: Ord>(&mut self, |&&'a mut [T]| -> B) -> Option<&'a mut [T]>

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

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

fn rev<'a, T>(self) -> Rev<MutSplits<'a, T>>