Module rayon::par_iter [] [src]

The ParallelIterator module makes it easy to write parallel programs using an iterator-style interface. To get access to all the methods you want, the easiest is to write use rayon::par_iter::*; at the top of your module, which will import the various traits and methods you need.

The submodules of this module mostly just contain implementaton details of little interest to an end-user.

Modules

collect
enumerate
for_each
len
map
range
reduce
slice
slice_mut
state
weight
zip

Traits

IntoParallelIterator
IntoParallelRefIterator
IntoParallelRefMutIterator
ParallelIterator

The ParallelIterator interface.