pub struct Cloned<I> { /* private fields */ }Expand description
Cloned adapter for parallel iterators over references
Trait Implementations§
Source§impl<'a, I, T> ParallelIterator for Cloned<I>
impl<'a, I, T> ParallelIterator for Cloned<I>
Source§fn collect<C>(self) -> Cwhere
C: FromParallelIterator<Self::Item>,
fn collect<C>(self) -> Cwhere
C: FromParallelIterator<Self::Item>,
Collect into a collection
Source§fn find_any<P>(self, predicate: P) -> Option<Self::Item>
fn find_any<P>(self, predicate: P) -> Option<Self::Item>
Find any item that matches the predicate
Source§fn fold<T, ID, F>(self, identity: ID, fold_op: F) -> Fold<Self, ID, F>
fn fold<T, ID, F>(self, identity: ID, fold_op: F) -> Fold<Self, ID, F>
Fold items with an identity value and accumulator function