definition:
|
funcsOfCurryProg :: CurryProg -> [QName]
funcsOfCurryProg =
trCProg (\_ _ _ cls insts types funcs _ ->
unionMap funcsOfCClassDecl cls ++
unionMap funcsOfCInstanceDecl insts ++
unionMap funcsOfCTypeDecl types ++
unionMap funcsOfCFuncDecl funcs)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
----------------------------------------------------------------------------
--- Extracts all function (and constructor) names occurring in a program.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {trCProg}}
|
name:
|
funcsOfCurryProg
|
precedence:
|
no precedence defined
|
result-values:
|
{trCProg}
|
signature:
|
AbstractCurry.Types.CurryProg -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|