definition: |
addErrorsPR :: PR a -> [PError] -> PR a addErrorsPR m ps = case m of OK _ -> throwPR ps Errors p -> Errors (p ++ ps) |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
--- Add a list of errors to the Error Monad |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({OK},_) |-> {Errors} || ({Errors},_) |-> {Errors}} |
name: |
addErrorsPR |
precedence: |
no precedence defined |
result-values: |
{Errors} |
signature: |
PR a -> [PError] -> PR a |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |