rename Error.inj to one

This commit is contained in:
rhiannon morris 2022-02-27 01:28:49 +01:00
parent 9bd02d185a
commit bc3230e000
1 changed files with 3 additions and 3 deletions

View File

@ -36,8 +36,8 @@ Uninhabited (OneOf []) where uninhabited x = uninhabited x.elem
export %inline
inj : ty `Elem` tys => ty -> OneOf tys
inj @{elem} value = One {elem, value}
one : type `Elem` types => type -> OneOf types
one @{elem} value = One {elem, value}
||| `All p types` computes a constraint for `p a` for each `a` in `types`
public export
@ -189,7 +189,7 @@ implementation
(Monad m, err `Elem` errs) =>
MonadThrow err (ErrorT errs m)
where
throw = MkErrorT . pure . Left . inj
throw = MkErrorT . pure . Left . one
export %inline
implementation