Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What does the following code mean in Ruby?

||=

Does it have any meaning or reason for the syntax?

share|improve this question

6 Answers

up vote 52 down vote accepted

This question has been discussed so often on the Ruby mailinglists and Ruby blogs that there are now even threads on the Ruby mailinglist whose only purpose is to collect links to all the other threads on the Ruby mailinglist that discuss this issue.

Here's one: The definitive list of ||= (OR Equal) threads and pages

If you really want to know what is going on, take a look at Section 11.3.1.2 "Abbreviated assignments" of the Ruby Language Draft Specification.

As a first approximation,

a ||= b

is equivalent to

a || a = b

and not equivalent to

a = a || b

However, that is only a first approximation, especially if a is undefined. The semantics also differ depending on whether it is a simple variable assignment, a method assignment or an indexing assignment:

a    ||= b
a.c  ||= b
a[c] ||= b

are all treated differently.

share|improve this answer
The second link has suffered from bit rot (comment from meta by stackoverflow.com/users/540162/nightfirecat). – Andrew Grimm Oct 11 '11 at 4:13
   
That's a very cryptic non-answer. The short answer seems to be: a ||= b means, if a is undefined then assign it the value of b, otherwise leave it alone. (Ok, there are nuances and special cases, but that's the basic case.) – Steve Bennett Feb 1 at 1:43
@SteveBennett: I wouldn't call the fact that a = false; a ||= true does not do what your answer says it does a "nuance". – Jörg W Mittag Feb 3 at 21:33

The accepted answer is cryptic and sends the reader to external sources instead of answering directly, so I'll attempt an answer.

a ||= b

is a "conditional assignment operator". It is shorthand for a || a = b.

It means "if a is false or undefined, then evaluate b and set a to the result". Ruby's short circuit evaluation means that if a is defined and evaluates to true, then the right hand side of the operator is not evaluated, and no assignment takes place. This distinction is unimportant if a and b are both local variables, but is significant if either is a getter/setter method of a class.

For example:

> a ||= 1;
=> 1
> a ||= 2;
=> 1

> foo = false;
=> false
> foo ||= true;
=> true
> foo ||= false;
=> true

Confusingly, it looks similar to other assignment operators (such as +=) but behaves differently.

a += b   →   a = a + b

a ||= b   →   a || a = b

There are apparently nuances, exceptions, special cases - but that's the essence of it. Please feel free to extend and improve this answer.

Further reading:

share|improve this answer
x ||= y

is

x || x = y

"if x is false or undefined, then x point to y"

share|improve this answer
a ||= b

is equivalent to

a || a = b

and not

a = a || b

because of the situation where you define a hash with a default (the hash will return the default for any undefined keys)

a = Hash.new(true) #Which is: {}

if you use:

a[10] ||= 10 #same as a[10] || a[10] = 10

a is still:

{}

but when you write it like so:

a[10] = a[10] || 10

a becomes:

{10 => true}

because you've assigned the value of itself at key 10, which defaults to true, so now the hash is defined for the key 10, rather than never performing the assignment in the first place.

share|improve this answer

It means or-equals to. It checks to see if the value on the left is defined, then use that. If it's not, use the value on the right. You can use it in Rails to cache instance variables in models.

A quick Rails-based example, where we create a function to fetch the currently logged in user:

class User > ActiveRecord::Base

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

end

It checks to see if the @current_user instance variable is set. If it is, it will return it, thereby saving a database call. If it's not set however, we make the call and then set the @current_user variable to that. It's a really simple caching technique but is great for when you're fetching the same instance variable across the application multiple times.

share|improve this answer
7  
This is wrong. Please read Ruby-Forum.Com/topic/151660 and the links provided therein. – Jörg W Mittag Mar 24 '10 at 4:01
x ||= y

equals to

x = x || y

no?

It is used for "if x is not defined or otherwise empty, then put y into x" (default value, for example).

share|improve this answer
3  
One issue to be aware of is that if x is false y is evaluated. – Scott Jun 15 '09 at 14:26
18  
This is wrong. Please read Ruby-Forum.Com/topic/151660 and the links provided therein. – Jörg W Mittag Mar 24 '10 at 3:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.