name: monad-control-aligned version: 0.0.2.1 synopsis: Lift control operations, like exception catching, through monad transformers license: BSD3 license-file: LICENSE author: Bas van Dijk, Anders Kaseorg maintainer: Oleg Grenrus , Bas van Dijk copyright: (c) 2011 Bas van Dijk, Anders Kaseorg homepage: https://github.com/athanclark/monad-control bug-reports: https://github.com/athanclark/monad-control/issues category: Control build-type: Simple cabal-version: 1.12 description: This package defines the type class @MonadBaseControl@, a subset of @MonadBase@ into which generic control operations such as @catch@ can be lifted from @IO@ or any other base monad. Instances are based on monad transformers in @MonadTransControl@, which includes all standard monad transformers in the @transformers@ library except @ContT@. . See the package which uses @monad-control@ to lift @IO@ operations from the @base@ library (like @catch@ or @bracket@) into any monad that is an instance of @MonadBase@ or @MonadBaseControl@. . Note that this package is a rewrite of Anders Kaseorg's @monad-peel@ library. The main difference is that this package provides CPS style operators and exploits the @RankNTypes@ and @TypeFamilies@ language extensions to simplify and speedup most definitions. extra-source-files: CHANGELOG README.markdown tested-with: GHC ==7.4.2 || ==7.6.3 || ==7.8.4 || ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.2 -------------------------------------------------------------------------------- source-repository head type: git location: git://github.com/athanclark/monad-control.git -------------------------------------------------------------------------------- library default-language: Haskell2010 hs-source-dirs: src ghc-options: -Wall exposed-modules: Control.Monad.Trans.Control.Aligned build-depends: base >=4.5 && <5 , stm >=2.3 && <2.6 , transformers >=0.2 && <0.7 , transformers-base >=0.4.6 && <0.5 , transformers-compat >=0.6.1 && <0.8