definition:
|
updCConsDecl :: (QName -> QName)
-> (CVisibility -> CVisibility)
-> ([CTypeExpr] -> [CTypeExpr])
-> ([CFieldDecl] -> [CFieldDecl])
-> CConsDecl -> CConsDecl
updCConsDecl fn fv fts ffs = trCConsDecl cons rec
where
cons name vis args =
CCons (fn name) (fv vis) (fts args)
rec name vis args =
CRecord (fn name) (fv vis) (ffs args)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Updates a constructor declaration.
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> {trCConsDecl}}
|
name:
|
updCConsDecl
|
precedence:
|
no precedence defined
|
result-values:
|
{trCConsDecl}
|
signature:
|
((String, String) -> (String, String)) -> (AbstractCurry.Types.CVisibility
-> AbstractCurry.Types.CVisibility) -> ([AbstractCurry.Types.CTypeExpr]
-> [AbstractCurry.Types.CTypeExpr]) -> ([AbstractCurry.Types.CFieldDecl]
-> [AbstractCurry.Types.CFieldDecl]) -> AbstractCurry.Types.CConsDecl
-> AbstractCurry.Types.CConsDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|