Private
constructorPrivate
valThe value on the left side.
Applies a function to the value inside the Either instance if it is on the left side, returning a new Either instance containing the result of the function. If the Either is on the right side, it returns itself.
An Either instance representing the transformed left side.
Applies a function to the value inside the Either instance if it is on the right side, returning a new Either instance containing the result of the function. If the Either is on the left side, it returns itself.
An Either instance representing the transformed right side.
Static
createGenerated using TypeDoc
Represents the left side of an Either type. Left
Implements