-
Notifications
You must be signed in to change notification settings - Fork 35
Methods_T_CodeJam_ValueOption_1
Andrew Koryavchenko edited this page Jul 4, 2017
·
3 revisions
The ValueOption(T) generic type exposes the following members.
Name | Description | |
---|---|---|
Equals(Object) | Indicates whether this instance and a specified object are equal. (Overrides ValueType.Equals(Object).) | |
Equals(ValueOption(T)) | Indicates whether the current object is equal to another object of the same type. | |
GetHashCode | Returns the hash code for this instance. (Overrides ValueType.GetHashCode().) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
ToString | Returns the fully qualified type name of this instance. (Overrides ValueType.ToString().) |
Name | Description | |
---|---|---|
Do(T) | Calls someAction if option has value, and noneAction otherwise. (Defined by Option.) | |
GetValueOrDefault(T)(T) | Overloaded. Returns value of option, or defaultValue if option hasn't it. (Defined by Option.) |
|
GetValueOrDefault(T, TResult)(Func(IOption(T), TResult), Func(TResult)) | Overloaded. Calls someSelector if option has value, and noneSelector otherwise. (Defined by Option.) |
|
With(T, TResult)(Func(T, TResult)) | Overloaded. Converts option value to another option with selectFunc. (Defined by ValueOption.) |
|
With(T, TResult)(Func(T, TResult), TResult) | Overloaded. Converts option value to another option with selectFunc. (Defined by ValueOption.) |
|
With(T, TResult)(Func(T, TResult), Func(TResult)) | Overloaded. Converts option value to another option with selectFunc. (Defined by ValueOption.) |