Hackage has several packages for monad transformers:
- mtl: Monad transformer library
- transformers: Concrete functor and monad transformers
- monads-fd: Monad classes, using functional dependencies
- monads-tf: Monad classes, using type families
- monadLib: A collection of monad transformers.
- mtl-tf: Monad transformer library using type families.
- mmtl: Modular Monad transformer library
- mtlx: Monad transformer library with type indexes, providing ‘free’ copies.
- compose-trans: Composable monad transformers
(and maybe I missed some)
Which one shall we use?
mtl is the one in the Haskell Platform, but I keep hearing on reddit that it’s uncool.
But what’s bad about choice anyway, isn’t it just a good thing?
Well, I saw how for example the authors of data-accessor had to make all these to cater to just the popular choices:
- data-accessor-monadLib library: Accessor functions for monadLib’s monads
- data-accessor-monads-fd library: Use Accessor to access state in monads-fd State monad class
- data-accessor-monads-tf library: Use Accessor to access state in monads-tf State monad type family
- data-accessor-mtl library: Use Accessor to access state in mtl State monad class
- data-accessor-transformers library: Use Accessor to access state in transformers State monad
I imagine that if this goes on and for example several competing Arrow packages evolve, we might see something like: spoonklink-arrows-transformers, spoonklink-arrows-monadLib, spoonklink-tfArrows-transformers, spoonklink-tfArrows-monadLib, …
And then I worry that if spoonklink gets forked, Hackage will run out of disk space. 🙂
Questions:
- Why are there so many monad transformer packages?
- Why is mtl [considered] uncool?
- What are the key differences?
- Most of these seemingly competing packages were written by Andy Gill and are maintained by Ross Paterson. Does this mean that these packages are not competing but rather work together in some way? And do Andy and Ross consider any of their own packages as obsolete?
- Which one should you and I use?
A bunch of them are almost completely equivalent:
mtluses GHC extensions, buttransformersis Haskell 98.monads-fdandmonads-tfare add-ons totransformers, using functional dependencies and type families respectively, both providing the functionality inmtlthat’s missing fromtransformers.mtl-tfismtlreimplemented using type families.So essentially,
mtl==transformers++monads-fd,mtl-tf==transformers++monads-tf. The improved portability and modularity oftransformersand its associated packages is whymtlis uncool these days, I think.mmtlandmtlxboth seem to be similar to and/or based onmtl, with API differences and extra features.MonadLibseems to have a rather different take on matters, but I’m not familiar with it directly. Also seems to use a lot of GHC extensions, more than the others.At a glance
compose-transseems to be more like metaprogramming stuff for creating monad transformers. It claims to be compatible withControl.Monad.Transwhich… I guess meansmtl?At any rate, I’d suggest the following decision algorithm:
transformers& co., help us laymtlto rest.mtlin a large project?transformersisn’t completely compatible, but no one will kill you for not switching.category-extras, and solve all the world’s problems with a page and a half ofincomprehensible abstract nonsensebreathtakingly generic code.