flatMap<R2> abstract method

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

Implementation

Either<L, R2> flatMap<R2>(Either<L, R2> Function(R right) f);