public
Description: The Maybe Monad in idiomatic Ruby
Homepage:
Clone URL: git://github.com/raganwald/andand.git
Click here to lend your support to: andand and make a donation at www.pledgie.com !
raganwald (author)
Wed Jan 14 08:23:28 -0800 2009
commit  9b0edd182e0a14d154644e086a343662109022d0
tree    25dd1c56ac1ae332a857d6cae748f00e5bb3bf59
parent  9dcc473c43f57fb52dd68252c7b4019919b1fdc3
andand /
name age message
file History.txt Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
file License.txt Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
file Manifest.txt Loading commit data...
file README.textile
file Rakefile Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
file andand.gemspec
directory config/ Sun Nov 09 15:29:13 -0800 2008 patch from Dave Turnbull [Reg Braithwaite]
directory doc/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
directory lib/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
directory log/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
directory pkg/
directory script/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
file setup.rb Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
directory tasks/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
directory test/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
directory website/ Sat Nov 01 06:01:38 -0700 2008 intial commit copying rubyforge [Reg Braithwaite]
README.textile

Object#andand

→ ‘raganwald-andand’

Breaking News

Object#andand’s functionality is also available as part of the RewriteRails plug-in. If you are using Ruby on Rails, please consider using RewriteRails instead of the andand gem.

What

Object#andand lets us write:

@phone = Location.find(:first, ...elided... ).andand.phone

And get a guarded method invocation or safe navigation method. This snippet performs a .find on the Location class, then sends .phone to the result if the result is not nil. If the result is nil, then the expression returns nil without throwing a NoMethodError.

As Dejan Simic put it:

Why would you want to write this:

entry.at('description') && entry.at('description').inner_text

when you can write this:

entry.at('description').andand.inner_text

Why indeed! As a bonus, install andand and you will also receive an enhanced Object#tap method, at no extra charge!

Installing

Update to RubyGems 1.2.0 before proceeding!!

sudo gem sources -a http://gems.github.com (you only have to do this once)
sudo gem install raganwald-andand

Or:

git clone git://github.com/raganwald/andand.git
cd andand
rake gem
rake install_gem

The basics

Object#andand

Ruby programmers are familiar with the two guarded assignment operators &&= and ||=. The typical use for them is when you have a variable that might be nil. For example:

first_name &&= @first_name.trim
@phone ||= '612-777-9311'

You are trimming the first name provided it isn’t nil, and you are assigning ‘612-777-9311’ to the phone if it is nil (or false, but that isn’t important right now). The other day we were discussing the guards and we agreed that we wished there was a guarded method invocation operator. Here’s an example of when you would use it:

@phone = Location.find(:first, ...elided... )&&.phone

Meaning, search the location table for the first record matching some criteria, and if you find a location, get its phone. If you don’t, get nil. (Groovy provides this exact functionality, although Groovy uses ?. instead of &&.) However, &&. won’t work because &&. is not a real Ruby operator.

Object#andand let’s us write:

@phone = Location.find(:first, ...elided... ).andand.phone

And get the same effect as:

@phone = ->(loc){ loc && loc.phone }.call(Location.find(:first, ...elided... ))

Note that because you accept any method using Ruby’s method invocation syntax, you can accept methods with parameters and/or blocks:

list_of_lists.detect { ...elided... }.andand.inject(42) { ...elided ... }

Object#andand emphasizes syntactic regularity: the goal was to make an &&. operation that worked like &&=. &&= looks just like normal assignment, you can use any expression on the RHS, only the semantics are different. The andand method also works just like a normal method invocation, only the semantics are modified.

Block-Structured andand

You can use andand with a block instead of a method:

@phone =  Location.find(:first, ...elided... ).andand { |location|
  YellowPages.reverse_lookup(location).phone
}

If the receiver is nil, the block is not executed and andand returns nil. If the receiver is not nil, it is passed as a parameter to the block and andand returns the value of the block. This makes it possible to perform conditional evaluation and also to make the scope of the variable really obvious.

Scope

Object#andand only works for one method call. For example, fu.andand.bar.blitz is going to call nil.blitz if fu is nil. That’s because fu.andand.bar is going to evaluate to nil, and then we will call the method blitz on it. In most cases, you want to use fu.andand.bar.andand.blitz. If that seems awkward, you might want to reconsider violating the Law of Demeter in an environment where you can’t be sure if your receiver is nil or not.

Another example of this (pointed out by Jan Zimmek):

x = nil
x.andand.length > 3

This results in a NoMethodError. Again, x is nil, therefore x.andand.length is nil, therefore we end up with nil > 3 which results in a NoMethodError. This can be fixed with x.andand.length.andand > 3 as above, or perhaps:

x = nil
x.andand { |value| value.length > 3 }

.

Enhanced Object#tap

Ruby 1.9 introduces Object#tap. This library implements Object#tap for Ruby 1.8 and enhances it. As in Ruby 1.9, you can call .tap with a block:

	blah.sort.grep( /foo/ ).tap { |xs| p xs }.map { |x| x.blah }
But like its sibling .andand, you can now call .tap with a method as well:
	[1, 2, 3, 4, 5].tap.pop.map { |n| n * 2 }
    	=> [2, 4, 6, 8]

Doctor, it hurts when I do that

So don’t do that!

The popular use case for Object#tap is poor man’s debugging:

	blah.sort.grep( /foo/ ).tap { |xs| p xs }.map { |x| x.blah }

Perhaps you want to remove the tap, you can delete it:

	blah.sort.grep( /foo/ ).map { |x| x.blah }

Or, you can change it to .dont:

	blah.sort.grep( /foo/ ).dont { |xs| p xs }.map { |x| x.blah }

Like .andand and .tap, .dont works with arbitrary methods, not just blocks:

	(1..10).to_a.reverse!
	    => [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
	(1..10).to_a.dont.reverse!
	    => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

A little more background

Object#andand & Object#me in Ruby explains the original motivations, as well as providing links to similar implementations you may want to consider. A few people have pointed out that Object#andand is similar to Haskell’s Maybe monad. The Maybe Monad in Ruby is a good introduction for Ruby programmers.

That’s cool, but…

No problem, I get that andand isn’t exactly what you need. Have a look at the Invocation Construction Kit or “Ick.” The Ick gem generalizes #andand and #tap: Ick provides four useful ways to block-structure your code, the methods #let, #returning, #inside, and #my. Ick also includes four quasi-monadic invocations, #maybe, #please, #tee, and #fork.

Ick provides abstractions for building your own invocations, so you can branch out and build some of your own abstractions with Ick’s building blocks.

How to submit patches

Read the 8 steps for fixing other people’s code.

The public clone url is git://github.com/raganwald/andand.git. Fork you very much.

License

This code is free to use under the terms of the MIT license.

Shout Out

Mobile Commons. Huge.

Contact

Comments are welcome. Send an email to Reginald Braithwaite.