-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/
-- | A bracket function for ExceptT over IO monad.
--
-- A bracket function for ExceptT over IO monad.
@package errors-ext
@version 0.1
module Control.Error.Extensions
-- | Analogous to bracket, but for ExceptT over IO.
bracketE :: ExceptT e IO a -> (a -> ExceptT e IO b) -> (a -> ExceptT e IO c) -> ExceptT e IO c
-- | A variant of bracketE where the return value from the first
-- computation is not required.
bracketE_ :: ExceptT e IO a -> ExceptT e IO b -> ExceptT e IO c -> ExceptT e IO c