pub struct ParIter<'a, T: Sync> { /* private fields */ }Expand description
Parallel iterator over slice references
Trait Implementations§
Source§impl<'a, T: 'a + Sync> ParallelIterator for ParIter<'a, T>
impl<'a, T: 'a + Sync> ParallelIterator for ParIter<'a, T>
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<F>(self, predicate: F) -> Option<Self::Item>
fn find_any<F>(self, predicate: F) -> Option<Self::Item>
Find any item that matches the predicate
Source§fn partition<F>(self, predicate: F) -> (Vec<Self::Item>, Vec<Self::Item>)
fn partition<F>(self, predicate: F) -> (Vec<Self::Item>, Vec<Self::Item>)
Partition items based on predicate