// ets_tracing: off import { bracketExit_ } from "./bracketExit.js" import type { Effect } from "./effect.js" /** * When this effect represents acquisition of a resource (for example, * opening a file, launching a thread, etc.), `bracket` can be used to ensure * the acquisition is not interrupted and the resource is always released. * * The function does two things: * * 1. Ensures this effect, which acquires the resource, will not be * interrupted. Of course, acquisition may fail for internal reasons (an * uncaught exception). * 2. Ensures the `release` effect will not be interrupted, and will be * executed so long as this effect successfully acquires the resource. * * In between acquisition and release of the resource, the `use` effect is * executed. * * If the `release` effect fails, then the entire effect will fail even * if the `use` effect succeeds. If this fail-fast behavior is not desired, * errors produced by the `release` effect can be caught and ignored. * * @ets_data_first bracket_ */ export function bracket( use: (a: A) => Effect, release: (a: A) => Effect, __trace?: string ) { return (acquire: Effect): Effect => bracket_(acquire, use, release, __trace) } /** * When this effect represents acquisition of a resource (for example, * opening a file, launching a thread, etc.), `bracket` can be used to ensure * the acquisition is not interrupted and the resource is always released. * * The function does two things: * * 1. Ensures this effect, which acquires the resource, will not be * interrupted. Of course, acquisition may fail for internal reasons (an * uncaught exception). * 2. Ensures the `release` effect will not be interrupted, and will be * executed so long as this effect successfully acquires the resource. * * In between acquisition and release of the resource, the `use` effect is * executed. * * If the `release` effect fails, then the entire effect will fail even * if the `use` effect succeeds. If this fail-fast behavior is not desired, * errors produced by the `release` effect can be caught and ignored. */ export function bracket_( acquire: Effect, use: (a: A) => Effect, release: (a: A) => Effect, __trace?: string ): Effect { return bracketExit_(acquire, use, release, __trace) }