A left-sided Either.
Readonly
The property that discriminates Either.
Either
The value of this Either.
If this and that Either are Right, combine their values.
Right
Compare this and that Either to determine their ordering.
When ordered, Left always compares as less than Right. If the variants are the same, their values are compared to determine the ordering.
Left
Compare this and that Either to determine their equality.
Two Either are equal if they are the same variant and their values are equal.
If this Either is Right, ignore its value and return that Either.
If this Either is Right, apply a function to its value to return another Either.
If this Either is Right, apply a generator function to its value to return another Either.
Test whether this Either is Left.
Test whether this Either is Right.
If this Either is Left, apply a function to map its value.
If this Either is Right, apply a function to map its value.
If this Either is Left, ignore its value and return that Either.
If this Either is Left, apply a function to its value to return another Either.
Apply one of two functions to extract the value out of this Either depending on the variant.
If this and that Either are Right, apply a function to combine their values.
Generated using TypeDoc
A left-sided Either.