effect-io-ai

Package: effect
Module: Micro

Micro.MicroExit

The MicroExit type is used to represent the result of a Micro computation. It can either be successful, containing a value of type A, or it can fail, containing an error of type E wrapped in a MicroCause.

Signature

type MicroExit<A, E> = | MicroExit.Success<A, E>
  | MicroExit.Failure<A, E>

Source

Since v3.4.6