| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Agda.Utils.IO
Description
Auxiliary functions for the IO monad.
Documentation
class CatchIO m where Source #
Catch IOExceptions.
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 | |