There are many different monad transformers libraries on Hackage. A few seem to get more attention than the others. To name a few: mtl (current version depending on transformers for some reason), transformers, monadLib, monads-tf, mtlx, contstuff.
Which one should be preferred and why? What are their unique features? What about performance?
mtlis being incrementally phased out in favor oftransformers. The current step in this process is replacing it with a thin wrapper aroundtransformers, hence the dependency. – C. A. McCann Apr 26 '11 at 22:17mtlprovides strictly more functionality thantransformers, and is equivalent totransformers+monads-fd(which is now deprecated).transformersprovides as much as possible in a Haskell-98 package, with extra functionality (mainly more instances) provided bymtl, or alternative packages if desired (e.g.monads-tf). – John L Apr 26 '11 at 22:31mtlis effectively replacingmonads-fd, then? Thanks for the clarification, I'm a bit behind the times. – C. A. McCann Apr 26 '11 at 22:43