executeSeq method

FutureOr<Either<L, IList<S>>> executeSeq(
  1. Iterable<StateReaderTaskEither<S, C, L, dynamic>> arr
)

Run the computations in sequence, only returning the new states

Implementation

FutureOr<Either<L, IList<S>>> executeSeq(
  Iterable<StateReaderTaskEither<S, C, L, dynamic>> arr,
) =>
    sequence(arr).flatMap(E.map((arr) => arr.map((t) => t.second).toIList()));