I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
|
29
|
|
|
|
|
|
But, You could have invented Monads!
|
|||
|
|
|
|
http://code.google.com/p/monad-tutorial/ is a Work In Progress to address exactly this question. |
||
|
|
|
Princess's explanation of F# Computation Expressions helped me, though I still can't say I've really understood. |
||
|
|
|
|
Two little tutorials from the wikibooks to explain the idea (one is F# but provides a nice short definition): |
||
|
|
|
|
The two things that helped me best when learning about there were: Chapter 8, "Functional Parsers," from Graham Hutton's book Programming in Haskell. This doesn't mention monads at all, actually, but if you can work through chapter and really understand everything in it, particularly how a sequence of bind operations is evaluated, you'll understand the internals of monads. Expect this to take several tries. The tutorial All About Monads. This gives several good examples of their use, and I have to say that the analogy in Appendex I worked for me. |
||
|
|
|
|
No comments about them being between molegs? Sigh... |
||
|
|
|
|
(See also the answers at What is a monad?) A good motivation to Monads is sigfpe(Dan Piponi)'s You Could Have Invented Monads! (And Maybe You Already Have). There are a LOT of other monad tutorials, many of which misguidedly try to explain monads in "simple terms" using various analogies: this is the monad tutorial fallacy; avoid them. As DR MacIver says in Tell us why your language sucks:
You say you understand the Maybe monad? Good, you're on your way. Just start using other monads and sooner or later you'll understand what monads are in general. [If you are mathematically oriented, you might want to ignore the dozens of tutorials and learn the definition, or follow lectures in category theory :) The main part of the definition is that a Monad M involves a "type constructor" that defines for each existing type "T" a new type "M T", and some ways for going back and forth between "regular" types and "M" types.] Also, surprisingly enough, one of the best introductions to monads is actually one of the early academic papers introducing monads, Philip Wadler's Monads for functional programming. It actually has practical, non-trivial motivating examples, unlike many of the artificial tutorials out there. |
|||
|
|
|
A monad is, effectively, a form of "type operator". It will do three things. First it will "wrap" ( or otherwise convert) a value of one type into another type (typically called a "monadic type"). Secondly it will make all the operations ( or functions ) available on the underlying type available on the monadic type. Finally it will provide support for combining its self with another monad to produce a composite monad. The "maybe monad" is essentially the equivalent of "nullable types" in VB / C#. It takes a non nullable type "T" and converts it into a "Nullable<T>", and then defines what all the binary operators mean on a Nullable<T>. Side effects are represented simillarly. A structure is created that holds descriptions of side effects along side a function's return value. The "lifted" operations then copy around side effects as values are passed between functions. The are called "monads" rather than the easier to grasp name of "type operators" for several reasons:
|
||||||||||||||||
|
|
|
@Jon That was a good video; for those who watch it and are still a little confused, make sure to read Sylvan's post in the comments on that page, which gives some useful C# code that may be of help in understanding Brian's great but otherwise terse explanation. |
||
|
|
|
|
This video is one of the clearest and most concise explanation of monads that I have come across: |
||
|
|
|
My favorite Monad tutorial: http://www.haskell.org/all_about_monads/html/index.html (out of 170,000 hits on a Google search for "monad tutorial"!) @Stu: The point of monads is to allow you to add (usually) sequential semantics to otherwise pure code; you can even compose monads (using Monad Transformers) and get more interesting and complicated combined semantics, like parsing with error handling, shared state, and logging, for example. All of this is possible in pure code, monads just allow you to abstract it away and reuse it in modular libraries (always good in programming), as well as providing convenient syntax to make it look imperative. Haskell already has operator overloading[1]: it uses type classes much the way one might use interfaces in Java or C# but Haskell just happens to also allow non-alphanumeric tokens like + && and > as infix identifiers. It's only operator overloading in your way of looking at it if you mean "overloading the semicolon" [2]. It sounds like black magic and asking for trouble to "overload the semicolon" (picture enterprising Perl hackers getting wind of this idea) but the point is that without monads there is no semicolon, since purely functional code does not require or allow explicit sequencing. This all sounds much more complicated than it needs to. sigfpe's article is pretty cool but uses Haskell to explain it, which sort of fails to break the chicken and egg problem of understanding Haskell to grok Monads and understanding Monads to grok Haskell. [1] This is a separate issue from monads but monads use Haskell's operator overloading feature. [2] This is also an oversimplification since the operator for chaining monadic actions is >>= (pronounced "bind") but there is syntactic sugar ("do") that lets you use braces and semicolons and/or indentation and newlines. |
||
|
|
|
|
The easiest way to grok them (at least for me) is as "decorators", adding behavior while preserving the underlying semantics. Or, an even dirtier definition: it's functional programming's operator overloading. |
||
|
|
