map<V> method

Either<L, V> map<V>(
  1. V f(
    1. R r
    )
)

Implementation

Either<L, V> map<V>(V Function(R r) f) => ap(Right(f));