DotMP
Classes | Namespaces | Enumerations | Functions
Chunk.cs File Reference

Classes

class  DotMP.ForAction< T >
 Class encapsulating all of the possible callbacks in a Parallel.For-style loop. This includes Parallel.For, Parallel.ForReduction<T>, Parallel.ForCollapse, and Parallel.ForReductionCollapse<T>. More...
 

Namespaces

namespace  DotMP
 

Enumerations

enum class  ActionSelector
 Enum describing which actions can be selected. More...
 

Functions

delegate void DotMP.ActionRef< T > (ref T a, int i)
 Action delegate that takes an int and a ref T as parameters. More...
 
delegate void DotMP.ActionRef2< T > (ref T a, int i, int j)
 Action delegate that takes two ints and a ref T as parameters. More...
 
delegate void DotMP.ActionRef3< T > (ref T a, int i, int j, int k)
 Action delegate that takes three ints and a ref T as parameters. More...
 
delegate void DotMP.ActionRef4< T > (ref T a, int i, int j, int k, int l)
 Action delegate that takes four ints and a ref T as parameters. More...
 
delegate void DotMP.ActionRefN< T > (ref T a, int[] i)
 Action delegate that takes an int[] and a ref T as parameters. More...
 

Enumeration Type Documentation

◆ ActionSelector

enum ActionSelector
strongprivate

Enum describing which actions can be selected.