Class | Description |
---|---|
Actions |
Collection of action templates.
|
Actions.Action0 |
Encapsulates a method that has no parameters and does not return a value
|
Actions.Action1<T1> |
Encapsulates a method that has a single parameter and does not return a value.
|
Actions.Action2<T1,T2> |
Encapsulates a method that has two parameters and does not return a value.
|
Actions.Action3<T1,T2,T3> |
Encapsulates a method that has three parameters and does not return a value.
|
Actions.Action4<T1,T2,T3,T4> |
Encapsulates a method that has four parameters and does not return a value.
|
Actions.Action5<T1,T2,T3,T4,T5> |
Encapsulates a method that has five parameters and does not return a value.
|
Actions.Action6<T1,T2,T3,T4,T5,T6> |
Encapsulates a method that has six parameters and does not return a value.
|
Actions.Action7<T1,T2,T3,T4,T5,T6,T7> |
Encapsulates a method that has seven parameters and does not return a value.
|
Actions.Action8<T1,T2,T3,T4,T5,T6,T7,T8> |
Encapsulates a method that has eight parameters and does not return a value.
|
Functions | |
Functions.Function0<R> |
Encapsulates a method that has no parameters and returns a value of the type specified by the R parameter.
|
Functions.Function1<T1,R> |
Encapsulates a method that has a single parameter and returns a value of the type specified by the R parameter.
|
Functions.Function2<T1,T2,R> |
Encapsulates a method that has two parameters and returns a value of the type specified by the R parameter.
|
Functions.Function3<T1,T2,T3,R> |
Encapsulates a method that has three parameters and returns a value of the type specified by the R parameter.
|
Functions.Function4<T1,T2,T3,T4,R> |
Encapsulates a method that has four parameters and returns a value of the type specified by the R parameter.
|
Functions.Function5<T1,T2,T3,T4,T5,R> |
Encapsulates a method that has five parameters and returns a value of the type specified by the R parameter.
|
Functions.Function6<T1,T2,T3,T4,T5,T6,R> |
Encapsulates a method that has six parameters and returns a value of the type specified by the R parameter.
|
Functions.Function7<T1,T2,T3,T4,T5,T6,T7,R> |
Encapsulates a method that has seven parameters and returns a value of the type specified by the R parameter.
|
Functions.Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> |
Encapsulates a method that has eight parameters and returns a value of the type specified by the R parameter.
|
Predicates |
Collection of predicate templates.
|
Predicates.Predicate1<T1> |
Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
|