definition:
|
showFlatProg :: Prog -> String
showFlatProg (Prog modname imports types funcs ops) =
" (Prog " ++ show modname
++ (if null imports then "\n []" else
"\n [" ++ showFlatListElems show imports ++ "]")
++ (if null types then "\n []" else
"\n [" ++ showFlatListElems showFlatType types ++ "\n ]")
++ "\n [" ++ showFlatListElems showFlatFunc funcs ++ "\n ]"
++ "\n " ++ showFlatList showFlatOp ops
++ "\n )\n"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Shows a FlatCurry program term as a string (with some pretty printing).
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Prog}) |-> _}
|
name:
|
showFlatProg
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
FlatCurry.Types.Prog -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|