Expand description
Into- traits for creating parallelized iterators and/or using par_azip!
Macros§
- par_
azip - Parallelized array zip macro: lock step function application across several arrays and producers.
Traits§
- Indexed
Parallel Iterator - An iterator that supports “random access” to its data, meaning that you can split it at arbitrary indices and draw data from those points.
- Into
Parallel Iterator IntoParallelIterator
implements the conversion to aParallelIterator
.- Into
Parallel RefIterator IntoParallelRefIterator
implements the conversion to aParallelIterator
, providing shared references to the data.- Into
Parallel RefMut Iterator IntoParallelRefMutIterator
implements the conversion to aParallelIterator
, providing mutable references to the data.- Parallel
Iterator - Parallel version of the standard iterator trait.