name: writer-cps-transformers
version: 0.5.5.0
license: BSD3
license-file: LICENSE
tested-with: GHC == 7.10.3, GHC == 8.0.1, GHC == 8.2.1, GHC == 8.4.3, GHC == 8.4.4, GHC == 8.6.1, GHC == 8.6.2, GHC == 8.6.3, GHC == 8.6.4
author: Andy Gill, Ross Paterson, Daniel Mendler
maintainer: mail@daniel-mendler.de
copyright: 2016 Daniel Mendler
bug-reports: https://github.com/minad/writer-cps-transformers/issues
category: Control
homepage: https://github.com/minad/writer-cps-transformers#readme
synopsis: WriteT and RWST monad transformers
description: The WriterT and RWST monad transformers provided by writer-cps-transformers are written in continuation passing style and avoid the space-leak problem of the traditional Control.Monad.Trans.Writer.Strict and Control.Monad.Trans.Writer.Lazy. The corresponding MTL class instances are in the package writer-cps-mtl (<http://hackage.haskell.org/package/writer-cps-mtl>).
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/minad/writer-cps-transformers
library
build-depends:
base <6,
transformers >=0.4 && <= 0.5.6.0
hs-source-dirs:
src
ghc-options: -Wall
exposed-modules:
Control.Monad.Trans.RWS.CPS
Control.Monad.Trans.RWS.CPS.Internal
Control.Monad.Trans.Writer.CPS
Control.Monad.Trans.Writer.CPS.Internal
default-language: Haskell2010