[][src]Trait skip_do::SkipDo

pub trait SkipDo: Iterator {
    fn skip_do<S, W>(self, skip_while: S, work: W) -> SkipDoIterator<Self, S, W>
    where
        Self: Sized + Iterator,
        S: Fn(&Self::Item) -> bool,
        W: FnMut(Self::Item)
, { ... } }

Provided methods

fn skip_do<S, W>(self, skip_while: S, work: W) -> SkipDoIterator<Self, S, W> where
    Self: Sized + Iterator,
    S: Fn(&Self::Item) -> bool,
    W: FnMut(Self::Item), 

Loading content...

Implementors

impl<IT: Iterator> SkipDo for IT[src]

Loading content...