evaluateSeq method

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

Run the computations in sequence, only returning the results

Implementation

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