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