definition:
|
trProg :: (String -> [String] -> [TypeDecl] -> [FuncDecl] -> [OpDecl] -> a)
-> Prog -> a
trProg prog (Prog name imps types funcs ops) = prog name imps types funcs ops
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- transform program
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{Prog}) |-> _}
|
name:
|
trProg
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(String -> [String] -> [FlatCurry.Types.TypeDecl] -> [FlatCurry.Types.FuncDecl]
-> [FlatCurry.Types.OpDecl] -> a) -> FlatCurry.Types.Prog -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|