then<TR> abstract method

Either<L, TR> then<TR>(
  1. Either<L, TR> fnR(
    1. R right
    )
)

Transform value of Right when transformation may be finished with an error

Implementation

Either<L, TR> then<TR>(Either<L, TR> Function(R right) fnR);