Module for_each

Module for_each 

Source
Expand description

ParallelForEach object is implemented for AtomicIterator and hence for types implementing Fetch trait. This allows an FnMut function to be run on each value of the collection implementing Fetch.

Structs§

ParallelForEach
ParallelForEach is a structure type that captures the information necessary to run the values within the Iterator in parallel Its the result of parallel_task that can be run on any Iterator implementing type.

Traits§

ParallelForEachIter
ParallelForEachIter allows calling the .for_each(f) to run a Fn function on type implementing AtomicIterator