monads

So, what is a monad?

I get sick and tired of people making simple things complicated, so when someone told me he was going to take a look at what a monad is, I assumed it was time to intervene; this is [the wikipedia explanation](https://en.wikipedia.org/wiki/Monad_(functional_programming):

In functional programming, a monad is a structure that represents computations defined as sequences of steps. A type with a monad structure defines what it means to chain operations, or nest functions of that type together. This allows the programmer to build pipelines that process data in steps, in which each action is decorated with additional processing rules provided by the monad.[1] As such, monads have been described as “programmable semicolons”; a semicolon is the operator used to chain together individual statements in many imperative programming languages,[1] thus the expression implies that extra code will be executed between the statements in the pipeline. Monads have also been explained with a physical metaphor as assembly lines, where a conveyor belt transports data between functional units that transform it one step at a time.[2] They can also be seen as a functional design pattern to build generic types.

That sounds like a sentence that requires you to have a large beard, no social skills and an IQ of over 150 to understand it!!

I am not claiming these guys have no social skills, but they do have a great beard!

I go to wikipedia to understand things, not to feel like a dumb*ss!

Here is my take on what a monad is

So here was my response: