map<C, L, R1, R2> function
Composes computations in sequence, using the return value from the previous computation.
Implementation
ReaderTaskEither<C, L, R2> Function(
ReaderTaskEither<C, L, R1>,
) map<C, L, R1, R2>(
R2 Function(R1 a) f,
) =>
(fa) => ReaderTaskEither(fa.call.compose(TE.map(f)));