sequenceList<E, A> static method
Convert a List<IOEither<E, A>> to a single IOEither<E, List<A>>.
Implementation
static IOEither<E, List<A>> sequenceList<E, A>(
List<IOEither<E, A>> list,
) =>
traverseList(list, identity);