definition:
|
allPredefined :: Naming -> [CInstanceDecl] -> [QName]
allPredefined (Naming _ cn _) =
nub . map allPredefined' . filter ((== cn) . snd . instanceName)
where
instanceName (CInstance n _ _ _) = n
allPredefined' :: CInstanceDecl -> QName
allPredefined' (CInstance _ _ [te] _) = case te of
(CTCons n) -> n
_ -> case tconsArgsOfType te of
(Just (n, _)) -> n
Nothing -> error $ "allPredefined: " ++ show te ++
" should have been a base type!"
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Returns the names of all data names defined in the program.
--- Used to retrieve the names of all predefined data definition instances.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Naming}) |-> {.._#lambda508}}
|
name:
|
allPredefined
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
RW.Monad.Naming -> [AbstractCurry.Types.CInstanceDecl] -> [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|