// ets_tracing: off import { done } from "../Promise/done.js" import type { Promise } from "../Promise/promise.js" import { chain_, result } from "./core.js" import type { Effect } from "./effect.js" import { uninterruptibleMask } from "./interruption.js" /** * Returns an effect that keeps or breaks a promise based on the result of * this effect. Synchronizes interruption, so if this effect is interrupted, * the specified promise will be interrupted, too. * * @ets_data_first to_ */ export function to(p: Promise, __trace?: string) { return (effect: Effect): Effect => to_(effect, p, __trace) } /** * Returns an effect that keeps or breaks a promise based on the result of * this effect. Synchronizes interruption, so if this effect is interrupted, * the specified promise will be interrupted, too. */ export function to_( effect: Effect, p: Promise, __trace?: string ): Effect { return uninterruptibleMask( ({ restore }) => chain_(result(restore(effect)), (x) => done(x)(p)), __trace ) }