F.ex., a Maybe Int can be a Just Int or Nothing. Now, if you add a Maybe Int to a Maybe Int, then the operator will look at the Maybes wrapping the Ints check to see if they are both have a valid value. If Just Ints inside, and if so, it passes will unwrap the unwrapped Intsto , pass them the addition operatorand then returns , re-wrap the resulting Int wrapped in into a Maybe that says it’s new Just Int (which is a valid ; otherwise it Maybe Int), and thus return a Maybe Int. But if one of them was a Nothing inside, this operator will just returns immediately return Nothing, which again is a valid Maybe Int. That way, you can pretend that says it’s emptyyour Maybe Ints are just normal numbers and perform regular math on them. If you were to get a Nothing, your equations will still produce the right result – without you having to litter checks for Nothing everywhere.
But the example is just what happens for a Maybe. If the extra information was an IO, then that special operator defined for IOs would be called instead, and it could do something totally different before performing the addition. (OK, adding two IO Ints together is probably nonsensical – I’m not sure yet.) (Also, if you paid attention to the Maybe 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.)
Basically, “monad” roughly means “pattern”. But instead of a book full of informally explained and specifically named Patterns, you now have a language construct – syntax and all – that allows you to declare a pattern new patterns as a thing things in your program. (The imprecision here is all the patterns have to follow a particular form, so it’s a monad is not quite patternsas generic as a pattern. But I think that’s the closest term that most people know.know and understand.)
And that is why people find them monads so confusing: because they are such a generic concept.
But imagine To ask what this meansmakes something a monad is similarly vague as to ask what makes something a pattern.
But think of the implications of having syntactic support in the language for the idea of a pattern: instead of having to read the Gang of Four book and memorise the construction of all the patternsa particular pattern, you just write code that implements these patterns this pattern in an agnostic, generic way 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 implement re-implement it over and over!
So that is why people who understand monads find them so useful: 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.
