Idris2Doc : IO.Async.Outcome

IO.Async.Outcome

(source)

Reexports

importpublic Data.List.Quantifiers.Extra

Definitions

0Result : ListType->Type->Type
  Alias for `Either (HSum es) a`: A computation that either
succeeds with a result of type `a` or fails with an error
of one of the types given in list `es`.

Note: If `es` is the empty list, the computation cannot fail,
because `HSum []` is uninhabited.

Totality: total
Visibility: public export
dataOutcome : ListType->Type->Type
Totality: total
Visibility: public export
Constructors:
Succeeded : a->Outcomeesa
Error : HSumes->Outcomeesa
Canceled : Outcomeesa

Hints:
Foldable (Outcomees)
Functor (Outcomees)
Traversable (Outcomees)
toOutcome : Resultesa->Outcomeesa
Totality: total
Visibility: export