CurryInfo: currypp-3.2.0 / CPP.ICode.ParseError.sequencePR

definition:
sequencePR :: [PR a] -> PR [a]
sequencePR []       = okPR []
sequencePR (pr:prs) = concatPR
                        (bindPR pr $ \x -> okPR [x])
                        (sequencePR prs)
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Join multiple Error Monads into one
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{({[]}) |-> {OK} || ({:}) |-> {Errors,OK}}
name:
sequencePR
precedence:
no precedence defined
result-values:
{Errors,OK}
signature:
[PR a] -> PR [a]
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms