/** * Returns an effect that forks all of the specified values, and returns a * composite fiber that produces unit. This version is faster than `forkAll` * in cases where the results of the forked fibers are not needed. * * @tsplus static effect/core/io/Effect.Ops forkAllDiscard */ export function forkAllDiscard( effects: Collection> ): Effect { return Effect.forEachDiscard(effects, (effect) => effect.fork) }