Skip to content

T_CodeJam_ValueOption_1

Andrew Koryavchenko edited this page Jun 17, 2018 · 5 revisions

ValueOption(T) Structure

Represents a value type that can be assigned null.

Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public struct ValueOption<T> : IOption<T>, 
	IEquatable<ValueOption<T>>

VB

Public Structure ValueOption(Of T)
	Implements IOption(Of T), IEquatable(Of ValueOption(Of T))

F#

[<SealedAttribute>]
type ValueOption<'T> =  
    struct
        interface IOption<'T>
        interface IEquatable<ValueOption<'T>>
    end

Type Parameters

 

T
  The ValueOption(T) type exposes the following members.

Constructors

 

Name Description
Public method ValueOption(T) Initializes a new instance to the specified value.
  Back to Top

Properties

 

Name Description
Public property HasValue Gets a value indicating whether the current object has a value.
Public property Value Gets the value of the current object.
  Back to Top

Methods

 

Name Description
Public method Equals(Object) Indicates whether this instance and a specified object are equal. (Overrides ValueType.Equals(Object).)
Public method Equals(ValueOption(T)) Indicates whether the current object is equal to another object of the same type.
Public method GetHashCode Returns the hash code for this instance. (Overrides ValueType.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method ToString Returns the fully qualified type name of this instance. (Overrides ValueType.ToString().)
  Back to Top

Operators

 

Name Description
Public operatorStatic member Equality Equality operator.
Public operatorStatic member Explicit(ValueOption(T) to T) Extracts value from option
Public operatorStatic member Implicit(T to ValueOption(T)) Creates a new object initialized to a specified value.
Public operatorStatic member Inequality Unequality operator.
  Back to Top

Extension Methods

 

Name Description
Public Extension Method Do(T) Calls someAction if option has value, and noneAction otherwise. (Defined by Option.)
Public Extension Method GetValueOrDefault(T)(T) Overloaded.
Returns value of option, or defaultValue if option hasn't it. (Defined by Option.)
Public Extension Method GetValueOrDefault(T, TResult)(Func(IOption(T), TResult), Func(TResult)) Overloaded.
Calls someSelector if option has value, and noneSelector otherwise. (Defined by Option.)
Public Extension Method With(T, TResult)(Func(T, TResult)) Overloaded.
Converts option value to another option with selectFunc. (Defined by ValueOption.)
Public Extension Method With(T, TResult)(Func(T, TResult), TResult) Overloaded.
Converts option value to another option with selectFunc. (Defined by ValueOption.)
Public Extension Method With(T, TResult)(Func(T, TResult), Func(TResult)) Overloaded.
Converts option value to another option with selectFunc. (Defined by ValueOption.)
  Back to Top

See Also

Reference

CodeJam Namespace

Clone this wiki locally