definition: |
terminateSourceProgGUIs :: ReplState -> IO ReplState terminateSourceProgGUIs rst | null sguis = return rst | otherwise = do writeVerboseInfo rst 1 "Terminating source program GUIs..." catch (mapM_ (\ (_,(_,h)) -> hPutStrLn h "q" >> hFlush h >> hClose h) sguis) (\_ -> return ()) return rst { sourceguis = [] } where sguis = sourceguis rst |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- Terminate all open SourceProgGUIs |
failfree: |
_ |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_) |-> _} |
name: |
terminateSourceProgGUIs |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
REPL.State.ReplState -> Prelude.IO REPL.State.ReplState |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |