-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_OneOf_2_GetValue__1
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Calls func for actual type argument and returns calculated value.
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public abstract TResult GetValue<TResult>(
Func<T1, TResult> case1Selector,
Func<T2, TResult> case2Selector
)
VB
Public MustOverride Function GetValue(Of TResult) (
case1Selector As Func(Of T1, TResult),
case2Selector As Func(Of T2, TResult)
) As TResult
F#
abstract GetValue :
case1Selector : Func<'T1, 'TResult> *
case2Selector : Func<'T2, 'TResult> -> 'TResult
- case1Selector
- Type: System.Func(T1, TResult)
Calculation function for T1 - case2Selector
- Type: System.Func(T2, TResult)
Calculation function for T2
- TResult
- [Missing documentation for "M:CodeJam.OneOf
2.GetValue``1(System.Func{
0,0},System.Func{`1,
0})"]
Type: TResult
Calculated value.
IOneOf(T1, T2).GetValue(TResult)(Func(T1, TResult), Func(T2, TResult))