Hyperlinkv0.8.0-beta.28

Schema

Schema.ExitIsotypeeffect/Schema.ts:9572
ExitIso<A, E, D>

Iso representation used for Exit schemas.

Details

Successful exits are represented as { _tag: "Success", value }, while failed exits are represented as { _tag: "Failure", cause }.

Exit
Source effect/Schema.ts:95727 lines
export type ExitIso<A extends Constraint, E extends Constraint, D extends Constraint> = {
  readonly _tag: "Success"
  readonly value: A["Iso"]
} | {
  readonly _tag: "Failure"
  readonly cause: CauseIso<E, D>
}
Referenced by 1 symbols