show/hide this revision's text 3 added 14 characters in body

You should first understand what a functor is. Before that, understand higher-order functions.

A higher-order function is simply a function that takes a function as an argument.

A functor is any type T for which there exists a higher-order function, call it map, that transforms a function of type (A => > B) into a function (T<A> => T<B>). <B>). This map function must also obey the laws of identity and composition such that the following expressions return true for all x, p, and q (Haskell notation):

map (\x -> x) x == x
map (p . q) x == map p (map q x)

For example, a type called List is a functor if it comes equipped with a function of type ((a => > b) => > (List<A> => List<B>)) which obeys the laws above. The practical application is obvious. The map function iterates over the list, calling the given function for each element, and returns the list of the results.

A monad is essentially just a functor T with an extra method, join, of type (T<T<A>> => > T<A>). <A>). For lists in Haskell:

join :: [[a]] -> [a]

Why is that useful? Because you could, for example, map over a list with a function that returns a list. Join takes the resulting list of lists and concatenates them. List is a monad because this is possible.

The clever bit is that you can compose a function that does map, then join. This function is called bind, or flatMap, or (>>=), >>=), or (=<<). <<). There are some added laws implied here, but this is basically all there is to monads.

show/hide this revision's text 2 added 217 characters in body

You should first understand what a functor is. Before that, understand higher-order functions.

A higher-order function is simply a function that takes a function as an argument.

A functor is any type T for which there exists a higher-order function, call it map, that transforms a function of type (A => B) into a function (T<A> => T<B>). This map function must also obey the laws of identity and composition such that the following expressions return true for all x, p, and q (Haskell notation):

map (\x -> x) x == x
map (p . q) x == map p (map q x)

For example, a List is a functor if it comes equipped with a function of type ((a => b) => (List<A> => List<B>)) which obeys the laws above. The practical application is obvious. The map function iterates over the list, calling the given function for each element, and returns the list of the results.

A monad is essentially just a functor with an extra method, join, of type (T<T<A>> => T<A>). For lists in Haskell:

join :: [[a]] -> [a]

Why is that useful? Because you could, for example, map over a list with a function that returns a list. Join takes the resulting list of lists and concatenates them. List is a monad because this is possible.

The clever bit is that you can compose a function that does map, then join. This function is called bind, or flatMap, or (>>=), or (=<<). There are some added laws implied here, but this is basically all there is to monads.

show/hide this revision's text 1

You should first understand what a functor is. Before that, understand higher-order functions.

A higher-order function is simply a function that takes a function as an argument.

A functor is any type T for which there exists a higher-order function, call it map, that transforms a function of type (A => B) into a function (T<A> => T<B>). This map function must also obey the laws of identity and composition such that the following expressions return true for all x, p, and q (Haskell notation):

map (\x -> x) x == x
map (p . q) x == map p (map q x)

For example, a List is a functor if it comes equipped with a function of type ((a => b) => (List<A> => List<B>)) which obeys the laws above. The practical application is obvious. The map function iterates over the list, calling the given function for each element, and returns the list of the results.

A monad is essentially just a functor with an extra method, join, of type (T<T<A>> => T<A>). For lists in Haskell:

join :: [[a]] -> [a]

The clever bit is that you can compose a function that does map, then join. This function is called bind, or flatMap, or (>>=), or (=<<). There are some added laws implied here, but this is basically all there is to monads.