definition:
|
genFunction :: CTypeDecl -> FunctionLayout -> RWM CFuncDecl
genFunction type' (FunctionLayout name _ genF) = do
rs <- genF type'
modname <- getModuleName
return $ CFunc (modname, name) 0 Public (CQualType (CContext [])
(typeDeclToTypeExpr type')) rs
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- For a given type 't' and a function layout, this function generates
--- a function declaration.
--- The function layout contains the name of the function, the type of the
--- function and the generator function for the function body.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{FunctionLayout}) |-> _}
|
name:
|
genFunction
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
AbstractCurry.Types.CTypeDecl -> RW.Monad.FunctionLayout
-> RW.Monad.RWM AbstractCurry.Types.CFuncDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|