flatMap<C, LL, L extends LL> method

Either<LL, C> flatMap<C, LL, L extends LL>(
  1. Either<LL, C> f(
    1. R
    )
)

Implementation

Either<LL, C> flatMap<C, LL, L extends LL>(Either<LL, C> Function(R) f) =>
    _either.fold((_) => Left<LL, C>((_either as Left)._value),
        (R r) => f(this._value));