map<V> method

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

{@category mapping}

Implementation

Effect<E, L, V> map<V>(V Function(R r) f) => ap(Effect.succeed(f));