The Billy Baldwin of Conditional Assignment

For those of you who don’t know, Billy Baldwin is the lesser-known and generally-less-useful little brother of famed actor Alec Baldwin.

In the world of Ruby’s conditional assignment operators, ||= is Alec Baldwin; charming and versatile. But not many people know about ||=’s little brother… the &&= operator.

Meet Billy

The ||= conditional assignment operator is popular in Ruby and for good reason. One common usage is for simple memoization. Ryan Bates outlined this technique in his very first RailsCast.

def current_user
  @current_user ||= User.find(session[:user_id])
end

The purpose here is to avoid re-finding the user every time the current_user method is called. The ||= operator above has the same effect as:

def current_user
  @current_user = @current_user || User.find(session[:user_id])
end

If @current_user is both defined and truthy (not false or nil), that value is simply returned. Otherwise the instance variable is set and returned.

Enough about Alec. What about Billy?

The magic of the &&= operator is that it only sets variables that are… already set! The usefulness of this may not be immediately apparent, but maybe you’ve written code like this:

class Article < ActiveRecord::Base
  validates :title, :body, :presence => true

  before_save :clean_summary

  private
    def clean_summary
      self.summary = summary.squish
    end
end

The problem with this code is that the article summary isn’t required. What if an article’s summary is nil? We’ll get a NoMethodError trying to call squish 1 on nil. Oftentimes, the fix looks like this:

def clean_summary
  self.summary = summary && summary.squish
end

which looks eerily similar to our current_user memoization expansion. So instead, try:

def clean_summary
  self.summary &&= summary.squish
end

Sure, it’s a bit of a one-trick pony, but sometimes that one trick is exactly what you need. Have you ever seen Backdraft? Every dog has its day.

1 String#squish changes consecutive whitespace to single spaces.

steve@collectiveidea.com

Comments

  1. flo@andersground.net
    Florian Gilcher
    June 21, 2011 at 19:11 PM
    Tiny nitpick:   = has the same effect as:
        @value   @value = ….
    This avoids assigning the variable when its already set and a double lookup if you use   = when accessing a Hash member.

    Otherwise: thanks for the reminder!

  2. June 21, 2011 at 19:28 PM

    Florian: Absolutely right, thank you! I’d originally written the current_user expansion just like that but ultimately wanted to keep the effect clearer for the sake of comparison to &&=.

  3. dcarper@dreamagile.com
    Dan
    June 21, 2011 at 19:48 PM

    First, hilarious title / comparison

    Second, I wasn’t aware of this, thanks for sharing!

    Dan

  4. June 21, 2011 at 19:54 PM
    Just make sure you don’t use   = and &&= for boolean values like flags. For that reason, I prefer to explicitly check for .nil?, even though it’s more verbose.
  5. test@example.com
    p8
    June 21, 2011 at 20:42 PM

    You can also use the xor one for :
    a ^= true # true
    a ^= true # false
    a ^= true # true
    a ^= true # false

  6. June 21, 2011 at 22:08 PM
    It’s sad to me that more rubyists don’t realize what terrific tools &&= and   = are. 

    &&= chaining is actually almost like a limited “Maybe Monad” for Ruby. It’s really great when you’re dealing with a long string of computations that may fail, you can just write them in a really naive fashion and avoid writing if(x != nil) guards. 

  7. June 21, 2011 at 22:15 PM

    I think this syntax is more clear:

    self.summary = summary.squish if summary.present?

    But I hadn’t seen the squish method, very cool!

  8. June 21, 2011 at 23:18 PM

    You can also use && in a similar way to mimic #try:

    name = user && user.name

  9. dude@crap.com
    dude
    June 22, 2011 at 0:23 AM

    In rails you can just do:

        self.summary = summary.try(:squish)

    But yes, quite good :)

  10. xn@gotham.us
    xn
    June 22, 2011 at 7:40 AM

    Fun! How about this?
    array_of_methods.inject(obj, :try)

  11. jarmod@hotmail.com
    jarmo
    March 22, 2013 at 1:36 AM

    In Objective-C just go ahead and call summary.squish (actually [summary squish]).  If summary is nil, it will do nothing.  No need to pre-test if (summary != nil) or have null pointer exception handling.  Surprising how useful this behavior actually is and how quickly you accept it.

  12. April 07, 2014 at 18:35 PM

    Heya pretty much started programming in the ruby programming
    language so I am quite a bit of a newcommer!
    However, have found your internet site very interesting and instructive.
    Appreciate it!

  13. March 28, 2015 at 13:54 PM
    Nice!… I never knew that the operator   could also be used this way as well. Thanks for the info…
  14. May 07, 2015 at 7:26 AM

    Thanks for share such a useful information with us. Keep sharing such kinds of posts. I really like reading this one.