CurryInfo: call-analysis-3.2.0 / TRS.containsApply

definition: Info
 
containsApply :: Rule -> Bool
containsApply (Rule _ _ rhs) = hasApply rhs
 where
  hasApply (Var _) = False
  hasApply (Func ft f args) = (ft==Def && f=="apply") || any hasApply args
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
does a rule contains a call to "apply"?
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({Rule}) |-> _}
name: Info
 containsApply
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Rule -> Prelude.Bool
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms