liftEither<A> method

Evaluation<E, R, W, S, A> liftEither<A>(
  1. Either<E, A> either
)

Implementation

Evaluation<E, R, W, S, A> liftEither<A>(Either<E, A> either) => either.fold(raiseError, pure);