Parallel version of the standard iterator trait.| docs.rs
`ParallelExtend` extends an existing collection with items from a `ParallelIterator`.| docs.rs
An iterator that supports “random access” to its data, meaning that you can split it at arbitrary indices and draw data from those points.| docs.rs
`IntoParallelIterator` implements the conversion to a `ParallelIterator`.| docs.rs
Takes two closures and potentially runs them in parallel. It returns a pair of the results from those closures.| docs.rs
A finite heterogeneous sequence, `(T, U, ..)`.| doc.rust-lang.org
A contiguous growable array type, written as `Vec`, short for ‘vector’.| doc.rust-lang.org
The boolean type.| doc.rust-lang.org
The `()` type, also called “unit”.| doc.rust-lang.org
References, `&T` and `&mut T`.| doc.rust-lang.org
Types that can be transferred across thread boundaries.| doc.rust-lang.org
A trait for giving a type a useful default value.| doc.rust-lang.org
The `Option` type. See the module level documentation for more.| doc.rust-lang.org