map<C> method

  1. @override
TaskEither<L, C> map<C>(
  1. C f(
    1. R r
    )
)
override

If running this TaskEither returns Right, then change its value from type R to type C using function f.

Implementation

@override
TaskEither<L, C> map<C>(C Function(R r) f) => ap(pure(f));