/** * Makes a scope. Finalizers added to this scope will be run in parallel when * this scope is closed. * * @tsplus static effect/core/io/Scope.Ops parallel */ export function parallel(): Effect { return Scope.makeWith(ExecutionStrategy.Parallel) }