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

definition: Info
 
bindPM :: PM a -> (a -> PM b) -> PM b
bindPM (PM m) f = PM $ bindWM m $ \b -> case b of
                                         Errors p -> cleanWM (Errors p)
                                         OK x     -> case f x of
                                                      PM a -> a
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Bind
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({PM},_) |-> _}
name: Info
 bindPM
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 PM a -> (a -> PM b) -> PM b
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms