flatMap<C> method

  1. @override
Either<L, C> flatMap<C>(
  1. Either<L, C> f(
    1. R r
    )
)
override

Implementation

@override
Either<L, C> flatMap<C>(Either<L, C> Function(R r) f) => Left(value);