This type encapsulates either a value of type F, S, T or U.
Declaring type: Either<F, S, T, U>
Namespace: Sasa
Assembly: Sasa
Collapse/Expand Protected Constructors
  Name Description
Protected Method Either

There is no summary.

Collapse/Expand Public Methods
  Name Description
Public Method Do Perform an action on either type.
Public Method Static First Returns an instances initialized to First.
Public Method Static Fourth Return an Either encapsulating a type U.
Public Method Static Second Returns an instances initialized to Second.
Public Method Select Overloaded. If the type is F, return the value, else return otherwise.
Public Method Select<Q> Transform the F, S, or T types into a Q.
Public Method Static Third Return an Either encapsulating a type T.
Collapse/Expand Public Properties
  Name Description
Public Property IsFirst Returns true if encapsulated type is of type L.
Public Property IsFourth Returns true if encapsulated type is of type R.
Public Property IsSecond Returns true if encapsulated type is of type R.
Public Property IsThird Returns true if encapsulated type is of type R.