collectParDiscard<R, E, A> static method

ZIO<R, E, Unit> collectParDiscard<R, E, A>(
  1. Iterable<ZIO<R, E, A>> zios
)

Runs the given zios in parallel, discarding the results.

Implementation

static ZIO<R, E, Unit> collectParDiscard<R, E, A>(
  Iterable<ZIO<R, E, A>> zios,
) =>
    collectPar(zios).asUnit;