definition:
|
cfunWithExp :: QName -> CExpr -> CFuncDecl
cfunWithExp qf e = CFunc qf _ _ _ (_ ++ [CRule _ (rhsWithExp e)] ++ _)
cfunWithExp qf e = CmtFunc _ qf _ _ _ (_ ++ [CRule _ (rhsWithExp e)] ++ _)
|
demand:
|
no demanded arguments
|
deterministic:
|
possibly non-deterministic operation
|
documentation:
|
--- Returns (non-deterministically) a function declaration containing
--- the given expression in the right-hand side.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> {CFunc,CmtFunc}}
|
name:
|
cfunWithExp
|
precedence:
|
no precedence defined
|
result-values:
|
{CFunc,CmtFunc}
|
signature:
|
(String, String) -> AbstractCurry.Types.CExpr -> AbstractCurry.Types.CFuncDecl
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|