flatMap<R2> method

EitherBuilder<L, R2> flatMap<R2>(
  1. Either<L, R2> f(
    1. R
    )
)

Implementation

EitherBuilder<L, R2> flatMap<R2>(
  E.Either<L, R2> Function(R) f,
) =>
    EitherBuilder(E.flatMap(f)(_either));