base-io-access-0.3.0.1: The IO functions included in base delimited into small, composable classes

Safe HaskellNone

Access.System.IO.Error

Documentation

class Access io => IOErrorAccess io whereSource

Methods

ioError' :: IOError -> io aSource

catchIOError' :: io a -> (IOError -> io a) -> io aSource

tryIOError' :: io a -> io (Either IOError a)Source

modifyIOError' :: (IOError -> IOError) -> io a -> io aSource

Instances