Deprecated

contstuff

Fast, easy to use CPS-based monad transformers

http://haskell.org/haskellwiki/Contstuff

Latest on Hackage:1.2.6

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed and maintained by Ertugrul Söylemez

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. ReaderT and 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.