definition:
|
trCProg :: (String -> [String] -> (Maybe CDefaultDecl) -> [CClassDecl]
-> [CInstanceDecl] -> [CTypeDecl] -> [CFuncDecl] -> [COpDecl] -> a)
-> CurryProg -> a
trCProg prog (CurryProg name imps dfltdecl clsdecls instdecls types funcs ops) =
prog name imps dfltdecl clsdecls instdecls types funcs ops
|
demand:
|
arguments 1 2
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Transforms an AbstractCurry program.
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,{CurryProg}) |-> _}
|
name:
|
trCProg
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
(String -> [String] -> Prelude.Maybe AbstractCurry.Types.CDefaultDecl
-> [AbstractCurry.Types.CClassDecl] -> [AbstractCurry.Types.CInstanceDecl]
-> [AbstractCurry.Types.CTypeDecl] -> [AbstractCurry.Types.CFuncDecl]
-> [AbstractCurry.Types.COpDecl] -> a) -> AbstractCurry.Types.CurryProg -> a
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|