What would an equivalent construct of a monad be in Ruby?
|
|
The precise technical definition: A monad, in Ruby, would be any class with
Some practical examples A very simple example of a monad is the lazy Identity monad, which emulates lazy semantics in Ruby (a strict language):
Using this, you can chain procs together in a lazy manner. For example, in the following,
A somewhat similar, less abstract example would be a monad for getting values out of a database. Let's presume that we have a class
This would let you chain database calls through a single connection, like so:
OK, so why on earth would you do that? Because there are extremely useful functions that can be written once for all monads. So code that you would normally write over and over can be reused for any monad once you simply implement
And this in turn lets us do even more useful things, like define this function:
The |
|||||||||||
|
|
To add my two cents, I'd say that hzap has misunderstood the concept of monads. It's not only a « type interface » or a « structure providing some specific functions », it's muck more than that. It's an abstract structure providing operations (bind (>>=) and unit (return)) which follow, as Ken and Apocalisp said, strict rules. If you're interested by monads and want to know more about them than the few things said in these answers, I strongly advise you to read : Monads for functional programming (pdf), by Wadler. See ya! PS: I see I don't directly answer your question, but Apocalisp already did, and I think (at least hope) that my precisions were worth it |
|||
|
|
|
Monads are not language constructs. They're just types that implement a particular interface, and since Ruby is dynamically typed, any class that implement something like |
|||||
|
|
Following on the above answers: You may be interested in checking out Rumonade, a ruby gem which implements a Monad mix-in for Ruby. Romande is implemented as mix-in, so it expect its host class to implement the methods You can use it to |
||||
|
|