sequenceList<E, A> static method

IOEither<E, List<A>> sequenceList<E, A>(
  1. List<IOEither<E, A>> list
)

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);