flatMap<R2> method

  1. @override
Either<L, R2> flatMap<R2>(
  1. covariant Function1<R, Either<L, R2>> f
)
override

Implementation

@override Either<L, R2> flatMap<R2>(Function1<R, Either<L, R2>> f) => fold(left, f);