definition:
|
cLambda :: [CPattern] -> CExpr -> CExpr
cLambda pats body | null pats = body
| otherwise = CLambda pats body
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Builds a lambda abstraction. If the argument list is empty,
-- it builts an expression.
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
name:
|
cLambda
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
[AbstractCurry.Types.CPattern] -> AbstractCurry.Types.CExpr
-> AbstractCurry.Types.CExpr
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|