definition:
|
getIntWithName :: IORef GuiState -> String -> IO Prog
getIntWithName gs name = do
(GS _ _ mods _ _ _ _) <- readIORef gs
return (progOfIFFP . fromJust . lookup name $ mods)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
-- get the interface (or FlatCurry program) of a specific module:
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
getIntWithName
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Data.IORef.IORef GuiState -> String -> Prelude.IO FlatCurry.Types.Prog
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|