map<S, R, E, A, B> function

StateReaderTaskEither<S, R, E, B> Function(StateReaderTaskEither<S, R, E, A>) map<S, R, E, A, B>(
  1. B f(
    1. A a
    )
)

Implementation

StateReaderTaskEither<S, R, E, B> Function(StateReaderTaskEither<S, R, E, A>)
    map<S, R, E, A, B>(B Function(A a) f) => (fa) => StateReaderTaskEither(
          fa.call.compose(RTE.map((t) => tuple2(f(t.first), t.second))),
        );