// ets_tracing: off import type { Effect } from "../../Effect/index.js" import { onExitFirst, onExitFirst_ } from "../core.js" import type { Managed } from "../managed.js" /** * Ensures that `f` is executed when this `Managed` is finalized, before * the existing finalizer. * * For use cases that need access to the Managed's result, see `onExitFirst`. * * @ets_data_first ensuringFirst_ */ export function ensuringFirst( f: Effect, __trace?: string ): (self: Managed) => Managed { return onExitFirst(() => f, __trace) } /** * Ensures that `f` is executed when this `Managed` is finalized, before * the existing finalizer. * * For use cases that need access to the Managed's result, see `onExitFirst_`. */ export function ensuringFirst_( self: Managed, f: Effect, __trace?: string ): Managed { return onExitFirst_(self, () => f, __trace) }