definition:
|
allDataUsed :: CurryProg -> [QName]
allDataUsed = nub . concatMap allDataInConstructor . constructors
where
allDataInConstructor cons = case cons of
(CCons _ _ tes) -> concatMap tconsOfType tes
(CRecord _ _ fds) -> concatMap tconsOfField fds
tconsOfField (CField _ _ te) = tconsOfType te
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the names of all data definitions used in the program.
|
failfree:
|
()
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{() |-> {.._#lambda508}}
|
name:
|
allDataUsed
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
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
|