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

definition: Info
 
concatPR :: PR [a] -> PR [a] -> PR [a]
concatPR (OK x) (OK y)           = okPR (x ++ y)
concatPR (Errors p1) (Errors p2) = Errors (p1 ++ p2)
concatPR (Errors p1) (OK _)      = Errors p1
concatPR (OK _)      (Errors p2) = Errors p2
demand: Info
 arguments 1 2
deterministic: Info
 deterministic operation
documentation: Info
 
Join two Error Monads
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({OK},{OK}) |-> {OK} || ({OK},{Errors}) |-> {Errors} || ({Errors},{Errors}) |-> {Errors} || ({Errors},{OK}) |-> {Errors}}
name: Info
 concatPR
precedence: Info
 no precedence defined
result-values: Info
 {Errors,OK}
signature: Info
 PR [a] -> PR [a] -> PR [a]
solution-complete: Info
 operationally complete operation
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms