ZygoseitherOn this pageEither<E, A> Either<E, A> = Left<E> | Right<A> Either type representing a value that can be either Left (error) or Right (success). Type Parametersโ E: Eโ The error type. A: Aโ The success type. Sinceโ 2.0.0