Expand description
Module defining parallel iterators with mutable access to values distributed to each thread.
Modules§
- computational_
variants - Module containing variants of parallel iterators using a mutable variable.
Structs§
- Using
Clone - Using variant that creates instances of each thread by cloning an initial value.
- Using
Fun - Using variant that creates instances of each thread using a closure.
Traits§
- ParIter
Using - Parallel iterator which allows mutable access to a variable of type
U
within its iterator methods. - Using
- A type that can
create
a value per thread, which will then be send to the thread, and used mutable by the defined computation.