CurryInfo: currypp-3.2.0 / CPP.ICode.ParseMonad.combinePMs

definition: Info
 
combinePMs :: (a -> b -> c) -> PM a -> PM b -> PM c
combinePMs f (PM p1) (PM p2) = warnPM (combinePRs f (discardWarnings p1)
                                          (discardWarnings p2))
                            (concatWarns p1 p2)
  where
   concatWarns (WM _ w1) (WM _ w2) = w1 ++ w2
demand: Info
 arguments 2 3
deterministic: Info
 deterministic operation
documentation: Info
 
combines two PMs by function f, throws error if at least one of
the two carries an error
failfree: Info
 (_, _, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{PM},{PM}) |-> {PM}}
name: Info
 combinePMs
precedence: Info
 no precedence defined
result-values: Info
 {PM}
signature: Info
 (a -> b -> c) -> PM a -> PM b -> PM c
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms