pub trait FromCondIterator<T>: FromParallelIterator<T> + FromIterator<T>where
    T: Send,{
    // Provided method
    fn from_cond_iter<P, S>(cond_iter: CondIterator<P, S>) -> Self
       where P: ParallelIterator<Item = T>,
             S: Iterator<Item = T> { ... }
}

Provided Methods§

source

fn from_cond_iter<P, S>(cond_iter: CondIterator<P, S>) -> Selfwhere P: ParallelIterator<Item = T>, S: Iterator<Item = T>,

Implementors§

source§

impl<C, T> FromCondIterator<T> for Cwhere C: FromParallelIterator<T> + FromIterator<T>, T: Send,