-
Notifications
You must be signed in to change notification settings - Fork 34
Methods_T_CodeJam_ValueOption
andrewvk edited this page Jun 23, 2016
·
3 revisions
[This is preliminary documentation and is subject to change.]
The ValueOption type exposes the following members.
| Name | Description | |
|---|---|---|
![]()
|
None(T) | Creates instance of ValueOption without value. |
![]()
|
Some(T) | Creates instance of ValueOption with specified value. |
![]()
|
SomeHasValue(T)(Nullable(T)) | Creates instance of ValueOption with specified value, if value has value. |
![]()
|
SomeHasValue(T)(T) | Creates instance of ValueOption with specified value, if value not null. |
![]()
|
With(T, TResult)(ValueOption(T), Func(T, TResult)) | Converts option value to another option with selectFunc. |
![]()
|
With(T, TResult)(ValueOption(T), Func(T, TResult), Func(TResult)) | Converts option value to another option with selectFunc. |
![]()
|
With(T, TResult)(ValueOption(T), Func(T, TResult), TResult) | Converts option value to another option with selectFunc. |
