definition:
|
funcNamesOfLDecl :: CLocalDecl -> [QName]
funcNamesOfLDecl lDecl =
case lDecl of CLocalFunc f -> funcNamesOfFDecl f
_ -> []
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- @return The list of declared function names of the given local declaration.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({CLocalFunc}) |-> {:} || ({CLocalPat}) |-> _ || ({CLocalVars}) |-> _}
|
name:
|
funcNamesOfLDecl
|
precedence:
|
no precedence defined
|
result-values:
|
{:,[]}
|
signature:
|
AbstractCurry.Types.CLocalDecl -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|