flatMap<T> abstract method

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

Implementation

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