definition:
|
funcNamesOfStat :: CStatement -> [QName]
funcNamesOfStat stms =
case stms of CSLet ld -> concatMap funcNamesOfLDecl ld
_ -> []
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- @return The declared function names of given statement in a list.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({CSLet}) |-> _ || ({CSExpr}) |-> _ || ({CSPat}) |-> _}
|
name:
|
funcNamesOfStat
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
AbstractCurry.Types.CStatement -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
reducible on all ground data terms
|