CurryInfo: call-analysis-3.2.0 / TRS.funcRules

definition: Info
 
funcRules :: String -> [Rule] -> [([Term],Term)]
funcRules _ [] = []
funcRules f (Rule rf args rhs : rules) =
    if f==rf then (args,rhs) : funcRules f rules
             else funcRules f rules
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
get all rules for a given function name:
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {[]} || (_,{:}) |-> {:,[]}}
name: Info
 funcRules
precedence: Info
 no precedence defined
result-values: Info
 {:,[]}
signature: Info
 String -> [Rule] -> [([Term], Term)]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 reducible on all ground data terms