definition:
|
completeProg :: CaseOptions -> Prog -> Prog
completeProg opts (Prog mn imps types funs ops) =
Prog mn imps types (map (completeFun opts) funs) ops
|
demand:
|
argument 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Complete all nested cases in a FlatCurry program.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Prog}) |-> {Prog}}
|
name:
|
completeProg
|
precedence:
|
no precedence defined
|
result-values:
|
{Prog}
|
signature:
|
CaseOptions -> FlatCurry.Types.Prog -> FlatCurry.Types.Prog
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|