Skip to content

T_CodeJam_Option_1_Some

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

Option(T).Some Class

Represents an Option with value.

Inheritance Hierarchy

System.Object
  CodeJam.Option(T)
    CodeJam.Option(T).Some
Namespace: CodeJam
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0

Syntax

C#

public sealed class Some : Option<T>

VB

Public NotInheritable Class Some
	Inherits Option(Of T)

F#

[<SealedAttribute>]
type Some =  
    class
        inherit Option<'T>
    end

The Option(T).Some generic type exposes the following members.

Constructors

 

Name Description
Public method Option(T).Some 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. (Inherited from Option(T).)
Public property IsNone Gets a value indicating whether the current object does not have a value. (Inherited from Option(T).)
Public property IsSome Gets a value indicating whether the current object has a value. (Inherited from Option(T).)
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. (Inherited from Option(T).)
Public method Equals(Option(T)) Indicates whether the current object is equal to another object of the same type. (Inherited from Option(T).)
Public method GetHashCode Returns the hash code for this instance. (Overrides Option(T).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. (Inherited from Option(T).)
  Back to Top

Extension Methods

 

Name Description
Public Extension Method With(T, TResult)(Func(T, TResult)) Overloaded.
Converts option value to another option with selectFunc. (Defined by Option.)
Public Extension Method With(T, TResult)(Func(T, TResult), TResult) Overloaded.
Converts option value to another option with selectFunc. (Defined by Option.)
Public Extension Method With(T, TResult)(Func(T, TResult), Func(TResult)) Overloaded.
Converts option value to another option with selectFunc. (Defined by Option.)
  Back to Top

See Also

Reference

CodeJam Namespace

Clone this wiki locally