// ets_tracing: off import type * as O from "../Option/index.js" import { catchAll_ } from "./catchAll.js" import type { Effect } from "./effect.js" import { fail } from "./fail.js" import { unrefineWith_ } from "./unrefine.js" /** * Recovers from some or all of the defects with provided partial function. * * '''WARNING''': There is no sensible way to recover from defects. This * method should be used only at the boundary between Effect and an external * system, to transmit information on a defect for diagnostic or explanatory * purposes. */ export function catchSomeDefect_( fa: Effect, f: (_: unknown) => O.Option>, __trace?: string ) { return catchAll_(unrefineWith_(fa, f, fail), (s): Effect => s, __trace) } /** * Recovers from some or all of the defects with provided partial function. * * '''WARNING''': There is no sensible way to recover from defects. This * method should be used only at the boundary between Effect and an external * system, to transmit information on a defect for diagnostic or explanatory * purposes. * * @dataFist catchSomeDefect_ */ export function catchSomeDefect( f: (_: unknown) => O.Option>, __trace?: string ) { return (effect: Effect) => catchSomeDefect_(effect, f, __trace) }