Difference between revisions of "Monad"

From HaskellWiki
Jump to navigation Jump to search
m (link)
(monads in other languages)
Line 43: Line 43:
 
An explanation of the basic Monad functions, with examples, can be found in the reference guide [http://members.chello.nl/hjgtuyl/tourdemonad.html A tour of the Haskell Monad functions], by Henk-Jan van Tuyl.
 
An explanation of the basic Monad functions, with examples, can be found in the reference guide [http://members.chello.nl/hjgtuyl/tourdemonad.html A tour of the Haskell Monad functions], by Henk-Jan van Tuyl.
   
  +
== Monads in other languages ==
  +
  +
Implementations of monads in other languages.
  +
  +
[http://cratylus.freewebspace.com/monads-in-javascript.htm JavaScript]
  +
[http://okmij.org/ftp/Scheme/monad-in-Scheme.html Scheme]
  +
[http://www-static.cc.gatech.edu/~yannis/fc++/FC++.1.5/monad.hhttp://www-static.cc.gatech.edu/~yannis/fc++/FC++.1.5/monad.h C++]
  +
[http://www.cas.mcmaster.ca/~carette/pa_monad/ OCaml]
  +
Lisp
  +
Perl
  +
Ruby
  +
Python
  +
ML
  +
Clean
  +
Java
   
 
[[Category:Standard classes]] [[Category:Monad]]
 
[[Category:Standard classes]] [[Category:Monad]]

Revision as of 03:06, 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.

JavaScript Scheme C++ OCaml Lisp Perl Ruby Python ML Clean Java