// ets_tracing: off import type * as CS from "../../../../Cause/index.js" import * as O from "../../../../Option/index.js" import type * as C from "../core.js" import * as CatchAllCause from "./catchAllCause.js" import * as FailCause from "./failCause.js" /** * Switches over to the stream produced by the provided function in case this one * fails with some errors. Allows recovery from all causes of failure, including interruption if the * stream is uninterruptible. */ export function catchSomeCause_( self: C.Stream, pf: (e: CS.Cause) => O.Option> ): C.Stream { return CatchAllCause.catchAllCause_( self, (e): C.Stream => O.fold_( pf(e), () => FailCause.failCause(e), (_) => _ ) ) } /** * Switches over to the stream produced by the provided function in case this one * fails with some errors. Allows recovery from all causes of failure, including interruption if the * stream is uninterruptible. * * @ets_data_first catchSomeCause_ */ export function catchSomeCause( pf: (e: CS.Cause) => O.Option> ) { return (self: C.Stream) => catchSomeCause_(self, pf) }