definition:
|
simpleRuleWithLocals :: [CPattern] -> CExpr -> [CLocalDecl] -> CRule
simpleRuleWithLocals pats rhs ldecls = CRule pats (CSimpleRhs rhs ldecls)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Constructs a simple rule with a pattern list, an
--- unconditional right-hand side, and local declarations.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> {CRule}}
|
name:
|
simpleRuleWithLocals
|
precedence:
|
no precedence defined
|
result-values:
|
{CRule}
|
signature:
|
[AbstractCurry.Types.CPattern] -> AbstractCurry.Types.CExpr
-> [AbstractCurry.Types.CLocalDecl] -> AbstractCurry.Types.CRule
|
solution-complete:
|
operationally complete operation
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|