packages feed

contstuff-1.0.0: contstuff.cabal

Name:          contstuff
Version:       1.0.0
Category:      Control, Monads
Synopsis:      Fast, easy to use CPS-based monad transformers
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.

    The Control.ContStuff.Simple module also provides simplified monad
    transformer wrappers, which hide the underlying CPS, so you get the
    full performance, but with a simplified interface.  Currently the
    simplified monad transformers are implemented as type synonyms, so
    their flexibility is slightly limited.

Library
    Build-depends:
        base >= 4 && <= 5,
        transformers >= 0.2.2.0
    GHC-Options: -W
    Exposed-modules:
        Control.ContStuff
        Control.ContStuff.Classes
        Control.ContStuff.Instances
        Control.ContStuff.Monads
        Control.ContStuff.Simple
        Control.ContStuff.Trans