File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 18
18
//! typically the most efficient.
19
19
//! - [Parallel iterators][iter module] make it easy to convert a sequential iterator to
20
20
//! execute in parallel.
21
+ //! - The [`ParallelIterator`] trait defines general methods for for all parallel iterators.
22
+ //! - The [`IndexedParallelIterator`] trait adds methods for iterators that support random
23
+ //! access.
21
24
//! - The [`par_sort`] method sorts `&mut [T]` slices (or vectors) in parallel.
22
25
//! - [`par_extend`] can be used to efficiently grow collections with items produced
23
26
//! by a parallel iterator.
55
58
//! [`filter`]: iter/trait.ParallelIterator.html#method.filter
56
59
//! [`fold`]: iter/trait.ParallelIterator.html#method.fold
57
60
//! [more]: iter/trait.ParallelIterator.html#provided-methods
61
+ //! [`ParallelIterator`]: iter/trait.ParallelIterator.html
62
+ //! [`IndexedParallelIterator`]: iter/trait.IndexedParallelIterator.html
58
63
//!
59
64
//! # Crate Layout
60
65
//!
You can’t perform that action at this time.
0 commit comments