What is a monad? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T00:17:07Zhttp://stackoverflow.com/feeds/question/44965http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/44965/what-is-a-monad30What is a monad?kronoz2008-09-04T23:26:44Z2009-11-30T00:29:04Z
<p>Having briefly looked at Haskell recently I wondered whether anybody could give a <em>brief, succinct, practical</em> explanation as to what a monad essentially is? I have found most explanations I've come across to be fairly inaccessible and lacking in practical detail, so could somebody here help me?</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/44974#4497411Answer by Sam Hasler for What is a monad?Sam Hasler2008-09-04T23:30:24Z2008-09-04T23:30:24Z<p>Look at the answer to <a href="http://beta.stackoverflow.com/questions/2366/can-anyone-explain-monads#2538" rel="nofollow">Can anyone explain Monads?</a></p>
http://stackoverflow.com/questions/44965/what-is-a-monad/44979#449791Answer by 1800 INFORMATION for What is a monad?1800 INFORMATION2008-09-04T23:33:40Z2008-09-04T23:33:40Z<p>A monad is a thing used to encapsulate objects that have changing state. It is most often encountered in languages that otherwise do not allow you to have modifiable state (e.g., Haskell).</p>
<p>An example would be for file IO.</p>
<p>You would be able to use a monad for file IO to isolate the changing state nature to just the code that used the Monad. The code inside the Monad can effectively ignore the changing state of the world outside the Monad - this makes it a lot easier to reason about the overall effect of your program.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/45151#4515116Answer by Chris Conway for What is a monad?Chris Conway2008-09-05T02:50:54Z2009-10-13T01:31:40Z<p>A monad is a datatype that has two operations: <code>>>=</code> (aka <code>bind</code>) and <code>return</code> (aka <code>unit</code>). <code>return</code> takes an arbitrary value and creates an instance of the monad with it. <code>>>=</code> takes an instance of the monad and maps a function over it. (You can see already that a monad is a strange kind of datatype, since in most programming languages you couldn't write a function that takes an arbitrary value and creates a type from it. Monads use a kind of <a href="http://en.wikipedia.org/wiki/Type%5Fpolymorphism" rel="nofollow"><em>parametric polymorphism</em></a>.)</p>
<p>In Haskell notation, the monad interface is written</p>
<pre><code>class Monad m where
return :: a -> m a
(>>=) :: forall a b . m a -> (a -> m b) -> m b
</code></pre>
<p>These operations are supposed to obey certain "laws", but that's not terrifically important: the "laws" just codify the way sensible implementations of the operations ought to behave (basically, that <code>>>=</code> and <code>return</code> ought to agree about how values get transformed into monad instances and that <code>>>=</code> is associative).</p>
<p>Monads are not just about state and IO: they abstract a common pattern of computation that includes working with state, IO, exceptions, and non-determinism. Probably the simplest monads to understand are lists and option types:</p>
<pre><code>instance Monad [ ] where
[] >>= k = []
(x:xs) >>= k = k x ++ (xs >>= k)
return x = [x]
instance Monad Maybe where
Just x >>= k = k x
Nothing >>= k = Nothing
return x = Just x
</code></pre>
<p>where <code>[]</code> and <code>:</code> are the list constructors, <code>++</code> is the concatenation operator, and <code>Just</code> and <code>Nothing</code> are the <code>Maybe</code> constructors. Both of these monads encapsulate common and useful patterns of computation on their respective data types (note that neither has anything to do with side effects or IO).</p>
<p>You really have to play around writing some non-trivial Haskell code to appreciate what monads are about and why they are useful.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/61210#612105Answer by Michiel Borkent for What is a monad?Michiel Borkent2008-09-14T08:56:26Z2008-09-14T08:56:26Z<p>This excellent <a href="http://channel9.msdn.com/shows/Going+Deep/Brian-Beckman-Dont-fear-the-Monads/" rel="nofollow">video</a> with Brian Beckman explains monads 'in terms you already know' and Brian assures you don't have to be scared by monads because of the way they look, because they are easy. I found his approach very educating and a good introduction to monads. Check it out.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/71579#715790Answer by Benjol for What is a monad?Benjol2008-09-16T12:06:31Z2008-09-16T12:06:31Z<p>If I've understood correctly, IEnumerable is derived from monads. I wonder if that might be an interesting angle of approach for those of us from the C# world?</p>
<p>For what it's worth, here are some links to tutorials that helped me (and no, I still haven't understood what monads are).</p>
<ul>
<li><a href="http://osteele.com/archives/2007/12/overloading-semicolon" rel="nofollow">http://osteele.com/archives/2007/12/overloading-semicolon</a></li>
<li><a href="http://spbhug.folding-maps.org/wiki/MonadsEn" rel="nofollow">http://spbhug.folding-maps.org/wiki/MonadsEn</a></li>
<li><a href="http://www.loria.fr/~kow/monads/" rel="nofollow">http://www.loria.fr/~kow/monads/</a></li>
</ul>
http://stackoverflow.com/questions/44965/what-is-a-monad/71697#7169712Answer by Arnar for What is a monad?Arnar2008-09-16T12:26:25Z2008-09-16T12:26:25Z<p>Actually, contrary to common understanding of Monads, they have nothing to do with state. Monads are simply a way to wrapping things and provide methods to do operations on the wrapped stuff without unwrapping it.</p>
<p>For example, you can create a type to wrap another one, in Haskell:</p>
<pre><code>data Wrapped a = Wrap a
</code></pre>
<p>To wrap stuff we define</p>
<pre><code>return :: a -> Wrapped a
return x = Wrap x
</code></pre>
<p>To perform operations without unwrapping, say you have a function <code>f :: a -> b</code>, then you can do this to <em>lift</em> that function to act on wrapped values:</p>
<pre><code>fmap :: (a -> b) -> (Wrapped a -> Wrapped b)
fmap f (Wrap x) = Wrap (f x)
</code></pre>
<p>That's about it there is to understand. However, it turns out that there is a more general function to do this <em>lifting</em>, which is <code>bind</code>:</p>
<pre><code>bind :: (a -> Wrapped b) -> (Wrapped a -> Wrapped b)
bind f (Wrap x) = f x
</code></pre>
<p><code>bind</code> can do a bit more than <code>fmap</code>, but not vice versa. Actually, <code>fmap</code> can be defined only in terms of <code>bind</code> and <code>return</code>. So, when defining a monad.. you give its type (here it was <code>Wrapped a</code>) and then say how its <code>return</code> and <code>bind</code> operations work.</p>
<p>The cool thing is that this turns out to be such a general pattern that it pops up all over the place, encapsulating state in a pure way is only one of them.</p>
<p>For a good article on how monads can be used to introduce functional dependencies and thus control order of evaluation, like it is used in Haskell's IO monad, check out <a href="http://www.haskell.org/haskellwiki/IO_inside" rel="nofollow">IO Inside</a>.</p>
<p>As for understanding monads, don't worry too much about it. Read about them what you find interesting and don't worry if you don't understand right away. Then just diving in a language like Haskell is the way to go. Monads are one of these things where understanding trickles into your brain by practice, one day you just suddenly realize you understand them.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/86471#864714Answer by Aristotle Pagaltzis for What is a monad?Aristotle Pagaltzis2008-09-17T19:04:21Z2008-09-17T22:25:42Z<p>[Disclaimer: I am still trying to fully grok monads. The following is just what I have understood so far. If it’s wrong, hopefully someone knowledgeable will call me on the carpet.]</p>
<p>Arnar <a href="#71697" rel="nofollow">wrote</a>:</p>
<blockquote>
<p>Monads are simply a way to wrapping things and provide methods to do operations on the wrapped stuff without unwrapping it.</p>
</blockquote>
<p>That’s precisely it. The idea goes like this:</p>
<ol>
<li><p>You take some kind of value and wrap it with some additional information. Just like the value is of a certain kind (eg. an integer or a string), so the additional information is of a certain kind.</p>
<p>F.ex. that extra information might be a <code>Maybe</code> or an <code>IO</code>.</p></li>
<li><p>Then you have some operators that allow you to operate on the wrapped data while carrying along that additional information. These operators use the additional information to decide how to change the behaviour of the operation on the wrapped value.</p>
<p>F.ex., a <code>Maybe Int</code> can be a <code>Just Int</code> or <code>Nothing</code>. Now, if you add a <code>Maybe Int</code> to a <code>Maybe Int</code>, the operator will check to see if they are both <code>Just Int</code>s inside, and if so, will unwrap the <code>Int</code>s, pass them the addition operator, re-wrap the resulting <code>Int</code> into a new <code>Just Int</code> (which is a valid <code>Maybe Int</code>), and thus return a <code>Maybe Int</code>. But if one of them was a <code>Nothing</code> inside, this operator will just immediately return <code>Nothing</code>, which again is a valid <code>Maybe Int</code>. That way, you can pretend that your <code>Maybe Int</code>s are just normal numbers and perform regular math on them. If you were to get a <code>Nothing</code>, your equations will still produce the right result – <em>without you having to litter checks for <code>Nothing</code> everywhere</em>.</p></li>
</ol>
<p>But the example is just what happens for <code>Maybe</code>. If the extra information was an <code>IO</code>, then that special operator defined for <code>IO</code>s would be called instead, and it could do something totally different before performing the addition. (OK, adding two <code>IO Int</code>s together is probably nonsensical – I’m not sure yet.) (Also, if you paid attention to the <code>Maybe</code> example, you have noticed that “wrapping a value with extra stuff” is not always correct. But it’s hard to be exact, correct and precise without being inscrutable.)</p>
<p>Basically, <strong>“monad” roughly means “pattern”</strong>. But instead of a book full of informally explained and specifically named Patterns, you now have <em>a language construct</em> – syntax and all – that allows you to <strong>declare new patterns as things in your program</strong>. (The imprecision here is all the patterns have to follow a particular form, so a monad is not quite as generic as a pattern. But I think that’s the closest term that most people know and understand.)</p>
<p>And that is why people find monads so confusing: because they are such a generic concept. To ask what makes something a monad is similarly vague as to ask what makes something a pattern.</p>
<p>But think of the implications of having syntactic support in the language for the idea of a pattern: instead of having to read the <i>Gang of Four</i> book and memorise the construction of a particular pattern, you just <em>write code that implements this pattern in an agnostic, generic way</em> once and then you are done! You can then reuse this pattern, like Visitor or Strategy or Façade or whatever, just by decorating the operations in your code with it, without having to re-implement it over and over!</p>
<p>So that is why people who <em>understand</em> monads find them so <em>useful</em>: it’s not some ivory tower concept that intellectual snobs pride themselves on understanding (OK, that too of course, teehee), but actually makes code simpler.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/143132#1431329Answer by Apocalisp for What is a monad?Apocalisp2008-09-27T06:36:19Z2009-11-30T00:26:57Z<p>You should first understand what a functor is. Before that, understand higher-order functions.</p>
<p>A <strong>higher-order function</strong> is simply a function that takes a function as an argument.</p>
<p>A <strong>functor</strong> is any type T for which there exists a higher-order function, call it <code>map</code>, that transforms a function of type <code>A => B</code> into a function <code>T<A> => T<B></code>. This <code>map</code> function must also obey the laws of identity and composition such that the following expressions return true for all <code>x</code>, <code>p</code>, and <code>q</code> (Haskell notation):</p>
<pre><code>map (\x -> x) x == x
map (p . q) x == map p (map q x)
</code></pre>
<p>For example, a type called <code>List</code> is a functor if it comes equipped with a function of type <code>(A => B) => List<A> => List<B></code> which obeys the laws above. The only practical implementation is obvious. The map function iterates over the list, calling the given function for each element, and returns the list of the results.</p>
<p>A <strong>monad</strong> is essentially just a functor <code>T</code> with two extra methods, <em><code>join</code></em>, of type <code>T<T<A>> => T<A></code>, and <code>unit</code> (sometimes <code>return</code>) of type <code>A => T<A></code>. For lists in Haskell:</p>
<pre><code>join :: [[a]] -> [a]
return :: a -> [a]
</code></pre>
<p>Why is that useful? Because you could, for example, <code>map</code> over a list with a function that returns a list. <code>Join</code> takes the resulting list of lists and concatenates them. <code>List</code> is a monad because this is possible.</p>
<p>The clever bit is that you can compose a function that does <code>map</code>, then <code>join</code>. This function is called <code>bind</code>, or <code>flatMap</code>, or <code>(>>=)</code>, or <code>(=<<)</code>. There are some added laws implied here, but this is basically all there is to monads.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/194207#19420761Answer by olavk for What is a monad?olavk2008-10-11T15:31:36Z2008-10-17T11:19:41Z<p>First: The term <strong>monad</strong> is a bit vacuous if you are not a mathematician. An alternative term is <strong>computation builder</strong> which is a bit more descriptive of what they are actually useful for.</p>
<p>You ask for practical examples:</p>
<p><strong>Example 1: List comprehension</strong>:</p>
<pre><code>[x*2 | x<-[1..10], odd x]
</code></pre>
<p>This expressions returns the doubles of all odd numbers in the range from 1 to 10. Very useful!</p>
<p><strong>Example 2: Input/Output</strong>:</p>
<pre><code>do
putStrLn "What is your name?"
name <- getLine
putStrLn ("Welcome, " ++ name ++ "!")
</code></pre>
<p>Both examples uses monads aka computation builders. The common theme is that the monad <em>chains operations</em> in some specific, useful way. In the list comprehension, the operations are chained such that if an operation returns a list, then the following operations are performed on <em>every item</em> in the list. The IO monad OTOH performs the operations sequentially, but passes a "hidden variable" along, which represents "the state of the world", which allows us to write IO code in a pure functional manner.</p>
<p>It turns out the the pattern of <em>chaining operations</em> is quite useful, and is used for lots of different things in Haskell.</p>
<p>An other example is exceptions: Using the <code>Error</code> monad, operations are chained such that the are performed sequentially, except if an error is thrown, in which case the rest of the chain is abandoned.</p>
<p>Both the list-comprehension syntax and the do-notation are syntactic sugar for chaining operations using the <code>>>=</code> operator. A monad is basically just a type that supports the <code>>>=</code> operator.</p>
<p><strong>Example 3: A parser</strong></p>
<p>This is a very simple parser which parses either a quoted string or a number:</p>
<pre><code>parseExpr = parseString <|> parseNumber
parseString = do
char '"'
x <- many (noneOf "\"")
char '"'
return (StringValue x)
parseNumber = do
num <- many1 digit
return (NumberValue (read num))
</code></pre>
<p>The operations <code>char</code>, <code>digit</code> etc. are pretty simple, they either match or dont match. The magic is the monad which manages the control flow: The operations are performed sequentially until a match fail, in which case the monad backtracks to the latest <code><|></code> and tries the next option. Again, a way of chaining operations with some additional, useful semantics.</p>
<p><strong>Example 4: Asynchronous programming</strong></p>
<p>The above examples are in Haskell, but it turns out F# also supports monads. This example is stolen from <a href="http://blogs.msdn.com/dsyme/archive/2007/10/11/introducing-f-asynchronous-workflows.aspx" rel="nofollow">Don Syme</a>: </p>
<pre><code>let AsyncHttp(url:string) =
async { let req = WebRequest.Create(url)
let! rsp = req.GetResponseAsync()
use stream = rsp.GetResponseStream()
use reader = new System.IO.StreamReader(stream)
return reader.ReadToEnd() }
</code></pre>
<p>This method fetches a web page. The punch line is the use of <code>GetResponseAsync</code> - it actually waits for the response on a seperate thread, while the main thread returns from the function. The last three lines are executed on the spawned thread when the response have been recieved. </p>
<p>In most other languages you would have to explicitly create a separate function for the lines that handle the response. The <code>async</code> monad is able to "split" the block on its own and postpone the execution of the latter half. (The <code>async {}</code> syntax indicates that the control flow in the block is defined by the <code>async</code> monad)</p>
<p><strong>How they work</strong></p>
<p>So how can a monad do all these fancy control-flow thing? What actually happens in a do-block (or a <em>computation expression</em> as they are called in F#), is that every operation (basically every line) is wrapped in a separate anonymous function. These functions are then combined using the <code>bind</code> operator (spelled <code>>>=</code> in Haskell). Since the <code>bind</code> operation combines functions, it can execute them as it sees fit: sequentially, multiple times, in reverse, discard some, execute some on a separate thread when it feels like it and so on. </p>
<p>As an example, this is the expanded version of the IO-code from example 2:</p>
<pre><code>putStrLn "What is your name?"
>>= (\_ -> getLine)
>>= (\name -> putStrLn ("Welcome, " ++ name ++ "!"))
</code></pre>
<p>This is uglier, but it's also more obvious what is actually going on. The <code>>>=</code> operator is the magic ingredient: It takes a value (one the left side) and combines it with a function (on the right side), to produce a new value. This new value is then taken by the next <code>>>=</code> operator and again combined with a function to produce a new value. <code>>>=</code> can be viewed as a mini-evaluator.</p>
<p>Note that <code>>>=</code> is overloaded for different types, so every monad has its own implemention of <code>>>=</code>. (All the operations in the chain have to be of the type of the same monad though, otherwise the <code>>>=</code> operator wont work.)</p>
<p>The simplest possible implementation of <code>>>=</code> just takes the value on the left and applies it to the function on the right and returns the result, but as said before, what makes the whole pattern useful is when there is something extra going on in the monads implementation of <code>>>=</code>. </p>
<p>There is some additional cleverness in how the values are passed from one operation to the next, but this requires a deeper explanation of the Haskell type system.</p>
<p><strong>Summing up</strong></p>
<p>In Haskell-terms a monad is a parameterized type which is an instance of the Monad type class, which defines >>= along with a few other operators. In laymans terms, a monad is just a type for which the <code>>>=</code> operation is defined.</p>
<p>In itsef <code>>>=</code> is just a cumbersome way of chaining functions, but with the presence of the do-notation which hides the "plumbing", the monadic operations turns out to be a very nice and useful abstraction, useful many places in the language, and useful for creating your own mini-languages in the language.</p>
<p><strong>Why are monads hard?</strong></p>
<p>For many Haskell-learners, monads are an obstacle they hit like a brick wall. It's not that monads themselves are complex, but that the implementation relies on many other advanced Haskell features like parameterized types, type classes, and so on. The problem is that Haskell IO is based on monads, and IO is probably one of the first things you want to understand when learning a new language - after all, its not much fun to create programs which doesn't produce any output. I have no immediate solution for this chicken-and-egg problem, except treating IO like "magic happens here" until you have enough experience with other parts of language. Sorry.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/364072#3640721Answer by jes5199 for What is a monad?jes51992008-12-12T20:36:57Z2008-12-12T20:36:57Z<p>I've been thinking of Monads in a different way, lately. I've been thinking of them as abstracting out <i>execution order</i> in a mathematical way, which makes new kinds of polymorphism possible.</p>
<p>If you're using an imperative language, and you write some expressions in order, the code ALWAYS runs exactly in that order.</p>
<p>And in the simple case, when you use a monad, it feels the same -- you define a list of expressions that happen in order. Except that, depending on which monad you use, your code might run in order (like in IO monad), in parallel over several items at once (like in the List monad), it might halt partway through (like in the Maybe monad), it might pause partway through to be resumed later (like in a Resumption monad), it might rewind and start from the beginning (like in a Transaction monad), or it might rewind partway to try other options (like in a Logic monad).</p>
<p>And because monads are polymorphic, it's possible to run the same code in different monads, depending on your needs.</p>
<p>Plus, in some cases, it's possible to combine monads together (with monad transformers) to get multiple features at the same time.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/476066#4760661Answer by siggboy for What is a monad?siggboy2009-01-24T14:10:13Z2009-01-24T14:10:13Z<p>In addition to the excellent answers above, let me offer you a link to the following article (by Patrick Thomson) which explains monads by relating the concept to the JavaScript library <em>jQuery</em> (and its way of using "method chaining" to manipulate the DOM):
<a href="http://importantshock.wordpress.com/2009/01/18/jquery-is-a-monad/" rel="nofollow" title="jQuery is a Monad">jQuery is a Monad</a></p>
<p>The <a href="http://docs.jquery.com/How_jQuery_Works" rel="nofollow" title="How jQuery Works">jQuery documentation</a> itself doesn't refer to the term "monad" but talks about the "builder pattern" which is probably more familiar. This doesn't change the fact that you have a proper monad there maybe without even realizing it.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/885677#8856771Answer by Nick Drew for What is a monad?Nick Drew2009-05-20T00:30:42Z2009-05-20T00:30:42Z<p>Monads are to control flow what abstract data types are to data. </p>
<p>In other words, many developers are comfortable with the idea of Sets, Lists, Dictionaries (or Hashes, or Maps), and Trees. Within those data types there are many special cases (for instance InsertionOrderPreservingIdentityHashMap). </p>
<p>However, when confronted with program "flow" many developers haven't been exposed to many more constructs than if, switch/case, do, while, goto (grr), and (maybe) closures.</p>
<p>So, a monad is simply a control flow construct. A better phrase to replace monad would be 'control type'.</p>
<p>As such, a monad has slots for control logic, or statements, or functions - the equivalent in data structures would be to say that some data structures allow you to add data, and remove it. </p>
<p>For example, the "if" monad:</p>
<p>if( clause ) then block</p>
<p>at it's simplest has two slots - a clause, and a block. The if monad is usually built to evaluate the result of the clause, and if not false, evaluate the block. Many developers are not introduced to monads when they learn 'if', and it just isn't necessary to understand monads to write effective logic.</p>
<p>Monads can become more complicated, in the same way that data structures can become more complicated, but there are many broad categories of monad that may have similar semantics, but differing implementations and syntax.</p>
<p>Of course, in the same way that data structures may be iterated over, or traversed, monads may be evaluated.</p>
<p>Compilers may or may not have support for user defined monads. Haskell certainly does. Ioke has some similar capabilities, athough the term monad is not used in the language.</p>
http://stackoverflow.com/questions/44965/what-is-a-monad/1035776#10357760Answer by huitseeker for What is a monad?huitseeker2009-06-23T23:24:24Z2009-06-23T23:24:24Z<p>If you can read ML syntax, a short, accessible explanation with practical, simple code is
<a href="http://www.cl.cam.ac.uk/~ts328/monads/" rel="nofollow">here</a>.</p>