| Safe Haskell | Safe |
|---|---|
| Language | Haskell2010 |
Agda.Utils.IO
Description
Auxiliary functions for the IO monad.
Synopsis
- class CatchIO m where
Documentation
Catch IOExceptions.
Minimal complete definition
Methods
catchIO :: m a -> (IOException -> m a) -> m a #
Instances
| CatchIO IO # | Alias of |
Defined in Agda.Utils.IO | |
| CatchIO m => CatchIO (WriterT w m) # | Upon exception, the written output is lost. |
Defined in Agda.Utils.IO | |