Module prelude

Module prelude 

Source
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§

IndexedParallelIterator
An iterator that supports “random access” to its data, meaning that you can split it at arbitrary indices and draw data from those points.
IntoParallelIterator
IntoParallelIterator implements the conversion to a ParallelIterator.
IntoParallelRefIterator
IntoParallelRefIterator implements the conversion to a ParallelIterator, providing shared references to the data.
IntoParallelRefMutIterator
IntoParallelRefMutIterator implements the conversion to a ParallelIterator, providing mutable references to the data.
ParallelIterator
Parallel version of the standard iterator trait.