vote up 27 vote down star
20

There is a lot of talk about monads these days. I have read a few articles / blog posts, but I can't go far enough with their examples to fully grasp the concept. The reason is that monads are a functional language concept, and thus the examples are in languages I haven't worked with (since I haven't used a functional language in depth). I can't grasp the syntax deeply enough to follow the articles fully ... but I can tell there's something worth understanding there.

However, I know C# pretty well, including lambda expressions and other functional features. I know C# only has a subset of functional features, and so maybe monads can't be expressed in C#.

However, surely it is possible to convey the concept? At least I hope so. Maybe you can present a C# example as a foundation, and then describe what a C# developer would wish he could do from there but can't because the language lacks functional programming features. This would be fantastic, because it would convey the intent and benefits of monads. So here's my question: What is the best explanation you can give of monads to a C# 3 developer?

Thanks!

(EDIT: By the way, I know there are at least 3 "what is a monad" questions already on SO. However, I face the same problem with them ... so this question is needed imo, because of the C#-developer focus. Thanks.)

flag

Please note that it is actually a C# 3.0 developer. Don't mistake it with .NET 3.5. Other than that, nice question. – Razzie Mar 23 at 19:31
It's worth pointing out that LINQ query expressions are an example of monadic behavior in C# 3. – Erik Mar 23 at 19:35
I still think it's a duplicate question. One of the answers in stackoverflow.com/questions/2366/… link to channel9vip.orcsweb.com/shows/Going+Deep/…, where one of the comments has a very nice C# example. :) – jalf Mar 23 at 19:39
Still, that's just one link from one answer to one of the SO questions. I see value in a question focused on C# developers. It is something I would ask a functional programmer who used to do C# if I knew one, so it seems reasonable to ask it on SO. But I respect your right to your opinion as well. – Charlie Flowers Mar 23 at 19:59
Isn't one answer all you need though? ;) My point is just that one of the other questions (and now this one as well, so yay) did have a C#-specific answer (which seems really well written, actually. Probably the best explanation I've seen) – jalf Mar 23 at 20:24

7 Answers

vote up 12 vote down check

Read The Marvels of Monads. I think it's exactly what you're looking for.

link|flag
+1 - Agreed, this is a great post for C# devs to get their heads around monads. – Greg Beech Mar 23 at 20:09
Oh, yes, this is a GREAT article. Thanks! (And it contradicts some of the other responses here ... which shows what a complicated and rich topic monads really are). – Charlie Flowers Mar 23 at 20:22
There seems to be a continuing problem with Monad articles in that they very elegantly(?) describes how to do it, but they utterly fail to explain why you want to do it. For instance, when would I really want to "compose" two functions in order to generate a new one? It's not something I consciously do all the time. And it takes most articles about two sentences into their description before they revert to local terminology, like "apply f to g" etc. It's not grockable by people without a degree in mathematics. – Lasse V. Karlsen Aug 3 at 14:01
@Lasse: I'd advise you to start using predefined monads in Haskell or workflows in F# then. A nice place to start would be the Async workflow in F#, for example. Or the sequence workflow. Hell, implement your own SelectMany in C# and you're halfway there. EVer felt the pain of asynchronous programming? Monads help. Like LINQ to Objects? Monads helped. – Kurt Schelfthout Aug 3 at 21:38
vote up 14 vote down

Most of what you do in programming all day is combining some functions together to build bigger functions from them. Usually you have not only functions in your toolbox but also other things like operators, variable assignments and the like, but generally your program combines together lots of "computations" to bigger computations that will be combined together further.

A monad is some way to do this "combining of computations".

Usually your most basic "operator" to combine two computations together is ";":

a; b

When you say this you mean "first do a, then do b". The result "a; b" is basically again a computation that can be combined together with more stuff. This is a simple monad, it is a way to combing small computations to bigger ones. The ";" says "do the thing on the left, then do the thing on the right".

Another thing that can be seen as a monad in object oriented languages is the ".". Often you find things like this:

a.b().c().d()

The "." basically means "evaluate the computation on the left, and then call the method on the right on the result of that". It is another way to combine functions/computations together, a little more complicated than ";". And the concept of chaining things together with "." is a monad, since it's a some way of combining two computations together to a new computation.

Another fairly common monad, that has no special syntax, is this pattern:

rv = socket.bind(address, port);
if (rv == -1)
  return -1;

rv = socket.connect(...);
if (rv == -1)
  return -1;

rv = socket.send(...);
if (rv == -1)
  return -1;

A return value of -1 indicates failure, but there is no real way to abstract out this error checking, even if you have lot's of API-calls that you need to combine in this fashion. This is basically just another monad that combines the function calls by the rule "if the function on the left returned -1, do return -1 ourselves, otherwise call the function on the right". If we had an "operator >>=" that did this thing we could simply write

socket.bind(...) >>= socket.connect(...) >>= socket.send(...)

It would make things more readable and help to abstract out our special way of combining functions, so that we don't need to repeat ourselves over and over again.

And there are many more ways to combine functions/computations that are useful as a general pattern and can be abstracted in a monad, enabling the user of the monad to write much more concise and clear code, since all the book-keeping and management of the used functions is done in the monad.

For example the above ">>=" could be extended to "do the error checking and then call the right side on the socket that we got as input", so that we don't need to explicitly specify socket lots of times:

new socket() >>= bind(...) >>= connect(...) >>= send(...);

The formal definition is a bit more complicated since you have to worry about how to get the result of one function as an input to the next one, if that function needs that input and since you want to make sure that the functions you combine fit into the way you try to combine them in your monad. But the basic concept is just that you formalize different ways to combine functions together.

link|flag
3  
Great answer! I'm going to throw in a quote by Oliver Steele, trying to relate Monads to operator overloading à la C++ or C#: Monads allow you to overload the ';' operator. – Jörg W Mittag Mar 23 at 22:12
vote up 1 vote down

This article about monads by Matthew Podwysocki gives a good introductin from the C# point of view. It mixes C# code and F# code so it's relatively easy to follow, even for the non functional programmer. Note that examples are both in C# and F#

Here is another good article from Matthew...

link|flag
vote up 0 vote down

You can think of a monad as a C# interface that classes have to implement. This is a pragmatic answer that ignores all the category theoretical math behind why you'd want to choose to have these declarations in your interface and ignores all the reasons why you'd want to have monads in a language that tries to avoid side effects, but I found it to be a good start as someone who understands (C#) interfaces.

link|flag
Can you elaborate? What is it about an interface that relates it to monads? – Joel Coehoorn Mar 23 at 19:41
I think the blog post expends several paragraphs devoted to that question. – Hao Lian Mar 24 at 21:15
vote up 1 vote down

this introduction may help:

http://channel9vip.orcsweb.com/shows/Going+Deep/Brian-Beckman-Dont-fear-the-Monads/

link|flag
That's what themissinglinq already posted (you probably crossed each other on the inter-tubes). – Charlie Flowers Mar 23 at 19:56
vote up 4 vote down

I'm sure other users will post in-depth, but I found this video helpful to an extent, but I will say that I'm still not to the point of fluency with the concept such that I could (or should) begin solving problems intuitively with Monads.

link|flag
What I found even more helpful was the comment containing a C# example below the video. – jalf Mar 23 at 20:22
I dunno about more helpful, but it certainly put the ideas in practice. – TheMissingLINQ Mar 24 at 14:01
vote up 3 vote down

A monad is essentially deferred processing. If you are trying to write code that has side effects (e.g. I/O) in a language that does not permit them, and only allows pure computation, one dodge is to say, "Ok, I know you won't do side effects for me, but can you please compute what would happen if you did?"

It's sort of cheating.

Now, that explanation will help you understand the big picture intent of monads, but the devil is in the details. How exactly do you compute the consequences? Sometimes, it isn't pretty.

The best way to give an overview of the how for someone used to imperative programming is to say that it puts you in a DSL wherein operations that look syntactically like what you are used to outside the monad are used instead to build a function that would do what you want if you could (for example) write to an output file. Almost (but not really) as if you were building code in a string to later be eval'd.

link|flag
Like in the I Robot book? Where the scientist ask a computer to calculate space travel and ask them to skip certain rules? : ) :) :) :) – Oscar Reyes Mar 23 at 19:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.