/** * Accesses the current scope and uses it to perform the specified effect. * * @tsplus static effect/core/io/Effect.Ops scopeWith */ export function scopeWith( f: (scope: Scope) => Effect ): Effect { return Effect.serviceWithEffect(Scope.Tag, f) }