collectPar<R, E, A> static method

ZIO<R, E, IList<A>> collectPar<R, E, A>(
  1. Iterable<ZIO<R, E, A>> zios
)

Runs the given zios in parallel, collecting the results.

Implementation

static ZIO<R, E, IList<A>> collectPar<R, E, A>(Iterable<ZIO<R, E, A>> zios) =>
    ZIO.traverseIterablePar<R, E, ZIO<R, E, A>, A>(
      zios,
      identity,
    );