core/either
library
Classes
-
Either<L, R>
-
An abstract class representing an either type, where the value can be either
of type
L
or R
.
-
Left<L, R>
-
A class representing the left value of the Either type.
-
Right<L, R>
-
A class representing the right value of the Either type.