-
Notifications
You must be signed in to change notification settings - Fork 35
T_CodeJam_IOneOf_7
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Common interface for OneOf(T1, T2, T3, T4, T5, T6, T7) and ValueOneOf(T1, T2, T3, T4, T5, T6, T7).
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public interface IOneOf<T1, T2, T3, T4, T5, T6, T7>
VB
Public Interface IOneOf(Of T1, T2, T3, T4, T5, T6, T7)
F#
type IOneOf<'T1, 'T2, 'T3, 'T4, 'T5, 'T6, 'T7> = interface end
- T1
- Type of case 1
- T2
- Type of case 2
- T3
- Type of case 3
- T4
- Type of case 4
- T5
- Type of case 5
- T6
- Type of case 6
- T7
- Type of case 7
Name | Description | |
---|---|---|
IsCase1 |
Returns true if class contains value of type T1. |
|
IsCase2 |
Returns true if class contains value of type T2. |
|
IsCase3 |
Returns true if class contains value of type T3. |
|
IsCase4 |
Returns true if class contains value of type T4. |
|
IsCase5 |
Returns true if class contains value of type T5. |
|
IsCase6 |
Returns true if class contains value of type T6. |
|
IsCase7 |
Returns true if class contains value of type T7. |
Name | Description | |
---|---|---|
Do | Calls action for actual type argument. | |
GetValue(TResult) | Calls func for actual type argument and returns calculated value. |