Module using

Module using 

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

UsingClone
Using variant that creates instances of each thread by cloning an initial value.
UsingFun
Using variant that creates instances of each thread using a closure.

Traits§

ParIterUsing
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.