Difference between revisions of "Monad"

From HaskellWiki
Jump to navigation Jump to search
(a list of known monads)
(reorder)
Line 71: Line 71:
 
* [http://haskell.org/ghc/docs/latest/html/libraries/mtl/Control-Monad-Identity.html Identity monad]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/mtl/Control-Monad-Identity.html Identity monad]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/base/Data-Maybe.html Optional results]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/base/Data-Maybe.html Optional results]
* [http://haskell.org/ghc/docs/latest/html/libraries/mtl/Control-Monad-List.html List monad]
 
 
* [http://haskell.org/haskellwiki/New_monads/MonadRandom Random values]
 
* [http://haskell.org/haskellwiki/New_monads/MonadRandom Random values]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/mtl/Control-Monad-Reader.html Read only state]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/mtl/Control-Monad-Reader.html Read only state]
Line 85: Line 84:
 
* [http://haskell.org/ghc/docs/latest/html/libraries/base/System-IO.html#t%3AIO IO]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/base/System-IO.html#t%3AIO IO]
 
* [http://www.haskell.org/haskellwiki/SudokuNon deterministic evaluation]
 
* [http://www.haskell.org/haskellwiki/SudokuNon deterministic evaluation]
 
* [http://haskell.org/ghc/docs/latest/html/libraries/mtl/Control-Monad-List.html List monad]
 
* [http://logic.csci.unt.edu/tarau/research/PapersHTML/monadic.html Backtracking]
 
* [http://logic.csci.unt.edu/tarau/research/PapersHTML/monadic.html Backtracking]
 
* [http://www.cs.cornell.edu/people/fluet/research/rgn-monad/index.html Region allocation]
 
* [http://www.cs.cornell.edu/people/fluet/research/rgn-monad/index.html Region allocation]

Revision as of 04:19, 2 November 2006

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.

Monads in other languages

Implementations of monads in other languages.

And possibly there exist:

  • Perl
  • Ruby
  • Python
  • ML
  • Clean
  • Java

Please add them if you know of other implementations.

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.