[][src]Trait take_until::TakeUntilExt

pub trait TakeUntilExt<P> where
    Self: Sized
{ fn take_until(self, predicate: P) -> TakeUntil<Self, P>; }

TakeUntilExt is an extension trait for iterators. It adds the take_until method.

Required methods

fn take_until(self, predicate: P) -> TakeUntil<Self, P>

Loading content...

Implementors

impl<I, P> TakeUntilExt<P> for I where
    I: Sized + Iterator,
    P: FnMut(&I::Item) -> bool
[src]

Loading content...