packages feed

contstuff-0.7.0: contstuff.cabal

Name:          contstuff
Version:       0.7.0
Category:      Control, Monads
Synopsis:      Fast, easy to use CPS-based monads
Maintainer:    Ertugrul Söylemez <es@ertes.de>
Author:        Ertugrul Söylemez <es@ertes.de>
Copyright:     (c) 2010 Ertugrul Söylemez
Homepage:      http://haskell.org/haskellwiki/Contstuff
License:       BSD3
License-file:  LICENSE
Build-type:    Simple
Stability:     experimental
Cabal-version: >= 1.6
Description:

  This library implements fast and easy to use CPS-based monad
  transformers.  Most of the usual monad transformers are implemented,
  including ChoiceT, ContT, EitherT, MaybeT and StateT.  Because of the
  design of this library, many other monad transformers are just special
  cases of those, including e.g. WriterT.

Library
  Build-depends:
    base >= 4 && <= 5
  GHC-Options:   -W
  Extensions:
    FlexibleInstances,
    MultiParamTypeClasses,
    TypeFamilies
  Exposed-modules:
    Control.ContStuff
    Control.ContStuff.Classes
    Control.ContStuff.Instances
    Control.ContStuff.Monads
    Control.ContStuff.Trans