CurryInfo: abstract-curry-4.0.0 / AbstractCurry.Build.letExpr

definition:
letExpr :: [CLocalDecl] -> CExpr -> CExpr
letExpr locals cexp = if null locals then cexp else CLetDecl locals cexp
demand:
argument 1
deterministic:
deterministic operation
documentation:
--- Constructs a let declaration (with possibly empty local delcarations).
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
letExpr
precedence:
no precedence defined
result-values:
_
signature:
[AbstractCurry.Types.CLocalDecl] -> AbstractCurry.Types.CExpr
-> AbstractCurry.Types.CExpr
solution-complete:
operation might suspend on free variables
terminating:
yes
totally-defined:
reducible on all ground data terms