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

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

Implementation

StateReaderTaskEither<S, R, E, Tuple2<A, B>> Function(
    StateReaderTaskEither<S, R, E, A>) flatMapTuple2<S, R, E, A, B>(
        StateReaderTaskEither<S, R, E, B> Function(A a) f) =>
    flatMap((a) => f(a).p(map((b) => tuple2(a, b))));