/** * Interrupts all fibers, awaiting their interruption. * * @tsplus static effect/core/io/Fiber.Ops interruptAll */ export function interruptAll( fibers: Collection> ): Effect { return Effect.fiberId.flatMap((fiberId) => Fiber.interruptAllAs(fibers, fiberId)) }