mtl (original) (raw)

mtl: Monad classes for transformers, using functional dependencies

MTL is a collection of monad classes, extending the transformerspackage, using functional dependencies for generic lifting of monadic actions.


[Skip to Readme]

Modules

[Index] [Quick Jump]

Versions [RSS] 1.0, 1.1.0.0, 1.1.0.1, 1.1.0.2, 1.1.1.0, 1.1.1.1, 2.0.0.0, 2.0.1.0, 2.0.1.1, 2.1, 2.1.1, 2.1.2, 2.1.3.1, 2.2, 2.2.0.1, 2.2.1, 2.2.2, 2.3, 2.3.1 (info)
Change log CHANGELOG.markdown
Dependencies base (>=4.12 && <4.15 | >=4.16 && <5), transformers (>=0.5.6 && <0.7) [details]
Tested with ghc ==8.6.5 | ==8.8.4 ==8.10.7
License BSD-3-Clause
Author Andy Gill
Maintainer chessai chessai1996@gmail.com, Emily Pillmore emilypi@cohomolo.gy, Koz Ross koz.ross@retro-freedom.nz
Revised Revision 1 made by phadej at 2022-12-27T18:47:14Z
Category Control
Home page http://github.com/haskell/mtl
Bug tracker http://github.com/haskell/mtl/issues
Source repo head: git clone https://github.com/haskell/mtl.git
Uploaded by topos at 2022-10-31T21:28:04Z
Distributions Arch:2.2.2, Fedora:2.3.1, FreeBSD:2.2.1
Reverse Dependencies 4171 direct, 11208 indirect [details]
Downloads 491142 total (18 in the last 30 days)
Rating 2.75 (votes: 21)[estimated by Bayesian average]
Your Rating λ λ λ
Status Docs available [build log]Last success reported on 2022-10-31 [all 1 reports]

Readme for mtl-2.3.1

[back to package description]

MTL is a collection of monad classes, extending the transformerspackage, using functional dependencies for generic lifting of monadic actions.

Structure

Transformers in MTL are divided into classes and data types. Classes define the monadic operations of transformers. Data types, generally from the transformers package, implement transformers, and MTL provides instances for all the transformer type classes.

MTL and transformers use a common module, data type, and function naming scheme. As an example, let's imagine we have a transformerFoo.

In the Control.Monad.Foo module, we'd find:

Lifting

When using monad transformers, you often need to "lift" a monadic action into your transformed monadic action. This is done using thelift function from MonadTrans in the Control.Monad.Trans.Classmodule:

lift :: (Monad m, MonadTrans t) => m a -> t m a

The action m a is lifted into the transformer action t m a.

As an example, here we lift an action of type IO a into an action of type ExceptT MyError IO a:

data MyError = EmptyLine

mightFail :: ExceptT MyError IO ()
mightFail = do
  l <- lift getLine
  when (null l) (throwError EmptyLine)

Transformers

The following outlines the available monad classes and transformers in MTL and transformers. For more details, and the corresponding documentation of the mtl version you are using, see the documentation on Hackage.

Resources