definition:
|
updCLocalDecl :: (CFuncDecl -> CFuncDecl)
-> (CPattern -> CPattern)
-> (CRhs -> CRhs)
-> ([CVarIName] -> [CVarIName])
-> CLocalDecl -> CLocalDecl
updCLocalDecl ff fp fr fv = trCLocalDecl lfun lpat lvars
where
lfun fdecl = CLocalFunc (ff fdecl)
lpat pat rhs = CLocalPat (fp pat) (fr rhs)
lvars vars = CLocalVars (fv vars)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Updates a local declaration.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> {trCLocalDecl}}
|
name:
|
updCLocalDecl
|
precedence:
|
no precedence defined
|
result-values:
|
{trCLocalDecl}
|
signature:
|
(AbstractCurry.Types.CFuncDecl -> AbstractCurry.Types.CFuncDecl)
-> (AbstractCurry.Types.CPattern -> AbstractCurry.Types.CPattern)
-> (AbstractCurry.Types.CRhs -> AbstractCurry.Types.CRhs)
-> ([(Prelude.Int, String)] -> [(Prelude.Int, String)])
-> AbstractCurry.Types.CLocalDecl -> AbstractCurry.Types.CLocalDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|