sequenceListSeq<E, A> static method
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);