Difference between revisions of "Monad"

From HaskellWiki
Jump to navigation Jump to search
(→‎Monad tutorials: link haskell.org copy of [http://haskell.org/all_about_monads/html/index.html All About Monads])
Line 41: Line 41:
 
* [http://www.alpheccar.org/fr/posts/show/60 Three kind of monads] : sequencing, side effects or containers
 
* [http://www.alpheccar.org/fr/posts/show/60 Three kind of monads] : sequencing, side effects or containers
 
* [http://haskell.org/haskellwiki/Books_and_tutorials#Using_monads More tutorials on monads]
 
* [http://haskell.org/haskellwiki/Books_and_tutorials#Using_monads More tutorials on monads]
  +
* [http://haskell.org/haskellwiki/Blog_articles#Monads Even more tutorials on monads..]
   
 
== Monad reference guides ==
 
== Monad reference guides ==

Revision as of 23:18, 15 March 2007

Monad class (base)
import Control.Monad

The Monad class is defined like this:

class Monad m where
  (>>=) :: m a -> (a -> m b) -> m b
  (>>) :: m a -> m b -> m b
  return :: a -> m a
  fail :: String -> m a

All instances of Monad should obey:

return a >>= k  =  k a
m >>= return  =  m
m >>= (\x -> k x >>= h)  =  (m >>= k) >>= h

See this intuitive explanation of why they should obey the Monad laws.

Any Monad can be made a Functor by defining

fmap ab ma = ma >>= (return . ab)

However, the Functor class is not a superclass of the Monad class. See Functor hierarchy proposal.

Monad tutorials

Monads are known for being deeply confusing to lots of people, so there are plenty of tutorials specifically related to monads. Each takes a different approach to Monads, and hopefully everyone will find something useful.

Monad reference guides

An explanation of the basic Monad functions, with examples, can be found in the reference guide A tour of the Haskell Monad functions, by Henk-Jan van Tuyl.

Monad research

A collection of research papers about monads.

Monads in other languages

Implementations of monads in other languages.

Unfinished:

And possibly there exist:

  • Standard ML (via modules?)

Please add them if you know of other implementations.

Collection of links to monad implementations in various languages. on Lambda The Ultimate.

Interesting monads

A list of monads for various evaluation strategies and games:

There are many more interesting instance of the monad abstraction out there. Please add them as you come across each species.