definition:
|
getAllFunctionNames :: IORef GuiState -> String -> IO [QName]
getAllFunctionNames gs mod =
getAllImportsOfModule gs mod >>= \imps ->
readIORef gs >>= \ (GS _ _ mods _ _ _ _) ->
return (map funcName (concatMap (progFuncs . progOfIFFP . snd)
(filter ((`elem` imps) . fst) mods)))
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Get all function names (also imported) of a module:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getAllFunctionNames
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState -> String -> Prelude.IO [(String, String)]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|