sequenceListSeq<E, A> static method

TaskEither<E, List<A>> sequenceListSeq<E, A>(
  1. List<TaskEither<E, A>> list
)

Convert a List<TaskEither<E, A>> to a single TaskEither<E, List<A>>.

Each TaskEither will be executed in sequence.

If you need TaskEither to be executed in parallel, use sequenceList.

Implementation

static TaskEither<E, List<A>> sequenceListSeq<E, A>(
  List<TaskEither<E, A>> list,
) =>
    traverseListSeq(list, identity);