map<TR> abstract method

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

Transform value of Right

Implementation

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