Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Auxiliary functions for the IO monad.
Documentation
class CatchIO m where Source #
Catch IOException
s.
Instances
CatchIO IO Source # | Alias of |
Defined in Agda.Utils.IO | |
CatchIO m => CatchIO (StateT s m) Source # | Upon exception, the state is reset. |
Defined in Agda.Utils.IO | |
CatchIO m => CatchIO (WriterT w m) Source # | Upon exception, the written output is lost. |
Defined in Agda.Utils.IO |