definition:
|
getAllModules :: IORef GuiState -> IO [Prog]
getAllModules gs = do
(GS _ _ mods _ _ _ _) <- readIORef gs
return (map (progOfIFFP . snd) mods)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- get the interfaces (or FlatCurry programs) of all modules:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> _}
|
name:
|
getAllModules
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState -> Prelude.IO [FlatCurry.Types.Prog]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
reducible on all ground data terms
|