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§
- Parallel
ForEach Mut - ParallelForEachMut is a structure type that captures the information necessary to run a FnMut closure within the Iterator in parallel Its the result of parallel_task that can be run on any Iterator implementing type.
Traits§
- Parallel
ForEach MutIter - ParallelForEachMutIter allows calling the .for_each_mut(f) to run a FnMut function on type implementing AtomicIterator. FnMut in a parallel computation does not add any value. This has been added only for completion purposes.