-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_Fn
Andrew Koryavchenko edited this page Jun 17, 2018
·
9 revisions
Helper methods for Func(TResult)(Func(TResult)) and delegates.
Helper methods for Func(TResult)(Func(TResult)) and delegates.
System.Object
CodeJam.Fn
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static class Fn
VB
Public NotInheritable Class Fn
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
type Fn = class end
The Fn type exposes the following members.
Name | Description | |
---|---|---|
Action(Action) | Helper for type inference from the lambda callback. | |
Action(T1)(Action(T1)) | Helper for type inference from the lambda callback. | |
Action(T1, T2)(Action(T1, T2)) | Helper for type inference from the lambda callback. | |
Action(T1, T2, T3)(Action(T1, T2, T3)) | Helper for type inference from the lambda callback. | |
Action(T1, T2, T3, T4)(Action(T1, T2, T3, T4)) | Helper for type inference from the lambda callback. | |
Action(T1, T2, T3, T4, T5)(Action(T1, T2, T3, T4, T5)) | Helper for type inference from the lambda callback. | |
Action(T1, T2, T3, T4, T5, T6)(Action(T1, T2, T3, T4, T5, T6)) | Helper for type inference from the lambda callback. | |
Action(T1, T2, T3, T4, T5, T6, T7)(Action(T1, T2, T3, T4, T5, T6, T7)) | Helper for type inference from the lambda callback. | |
Func(TResult)(Func(TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, TResult)(Func(T1, TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, T2, TResult)(Func(T1, T2, TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, T2, T3, TResult)(Func(T1, T2, T3, TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, T2, T3, T4, TResult)(Func(T1, T2, T3, T4, TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, T2, T3, T4, T5, TResult)(Func(T1, T2, T3, T4, T5, TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, T2, T3, T4, T5, T6, TResult)(Func(T1, T2, T3, T4, T5, T6, TResult)) | Helper for type inference from the lambda callback. | |
Func(T1, T2, T3, T4, T5, T6, T7, TResult)(Func(T1, T2, T3, T4, T5, T6, T7, TResult)) | Helper for type inference from the lambda callback. |
Name | Description | |
---|---|---|
False | Gets the function that always returns false. | |
True | Gets the function that always returns true. |