The monad-control package
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 lifted-base 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.
The following critertion based benchmark shows that monad-control is on average about 99% faster than monad-peel:
git clone https://github.com/basvandijk/bench-monad-peel-control
Properties
| Versions | 0.1, 0.2, 0.2.0.1, 0.2.0.2, 0.2.0.3, 0.3, 0.3.0.1, 0.3.1, 0.3.1.1, 0.3.1.2, 0.3.1.3, 0.3.1.4, 0.3.2, 0.3.2.1 |
|---|---|
| Dependencies | base (≥3 & <4.5), base-unicode-symbols (≥0.1.1 & <0.3), transformers (0.2.*), transformers-base (0.4.*) |
| License | BSD3 |
| Copyright | (c) 2011 Bas van Dijk, Anders Kaseorg |
| Author | Bas van Dijk, Anders Kaseorg |
| Maintainer | Bas van Dijk <v.dijk.bas@gmail.com> |
| Category | Control |
| Home page | https://github.com/basvandijk/monad-control |
| Bug tracker | https://github.com/basvandijk/monad-control/issues |
| Source repository | git clone git://github.com/basvandijk/monad-control.git |
| Upload date | Fri Dec 2 09:52:16 UTC 2011 |
| Uploaded by | BasVanDijk |
| Built on | ghc-7.2 |
| Distributions | Fedora: 0.3.1.4, NixOS: 0.3.2.1, Debian: 0.3.1.4, FreeBSD: 0.3.1.4 |
Modules
- Control
- Monad
Downloads
- monad-control-0.3.tar.gz (Cabal source package)
- package description (included in the package)