definition:
|
updCInstanceDecl :: (QName -> QName)
-> (CContext -> CContext)
-> ([CTypeExpr] -> [CTypeExpr])
-> ([CFuncDecl] -> [CFuncDecl])
-> CInstanceDecl -> CInstanceDecl
updCInstanceDecl fn fc ft ff = trCInstanceDecl inst
where
inst name ctxt tes funcs =
CInstance (fn name) (fc ctxt) (ft tes) (ff funcs)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Updates an AbstractCurry program.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> {trCInstanceDecl}}
|
name:
|
updCInstanceDecl
|
precedence:
|
no precedence defined
|
result-values:
|
{trCInstanceDecl}
|
signature:
|
((String, String) -> (String, String)) -> (AbstractCurry.Types.CContext
-> AbstractCurry.Types.CContext) -> ([AbstractCurry.Types.CTypeExpr]
-> [AbstractCurry.Types.CTypeExpr]) -> ([AbstractCurry.Types.CFuncDecl]
-> [AbstractCurry.Types.CFuncDecl]) -> AbstractCurry.Types.CInstanceDecl
-> AbstractCurry.Types.CInstanceDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|