Private
constructorPrivate
valThe value on the right 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 right side of an Either type. Right
Implements