flatMapRight<R2> abstract method

Either<L, R2> flatMapRight<R2>(
  1. Map1<R, Either<L, R2>> rightFunction
)

Returns a new Either from the either-returning transformation rightFunction, otherwise returns the wrapped left value.

Implementation

Either<L, R2> flatMapRight<R2>(
  Map1<R, Either<L, R2>> rightFunction,
);