andThen<R2> method

Either<L, R2> andThen<R2>(
  1. Either<L, R2> next
)

Implementation

Either<L, R2> andThen<R2>(Either<L, R2> next) => fold(left, (_) => next);