Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does ||= mean in Ruby?

What does ||= mean in Ruby?

share|improve this question
Damn, couldn't find anything when I searched. – ben Sep 27 '10 at 6:19

marked as duplicate by Jörg W Mittag, Daniel Vandersluis, Joel Mueller, Georg Fritzsche, sepp2k Sep 27 '10 at 9:01

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 9 down vote accepted

It's mainly used as a shortform for initializing a variable to a certain value, if it is not yet set.

Think about the statement as returning x || (x = y). If x has a value (other than false), only the left side of the || will be evalutated (since || short-circuts), and x will be not be reassigned. However, if x is false or nil, the right side will be evaluated, which will set x to y, and y will be returned (the result of an assignment statement is the right-hand side).

See http://dablog.rubypal.com/2008/3/25/a-short-circuit-edge-case for more discussion.

share|improve this answer
+1 forgot about it – Nikita Rybak Sep 27 '10 at 3:51
x ||= y acts like x = y unless x which (if we assume x and y stand for arbitrary expressions and not necessarily variables) is not the same as either x = x || y (consider cases where x = x is not a no-op) or x = y if x.nil? (consider the case where x is false). – sepp2k Sep 27 '10 at 8:11
Jorg W Mittag reckons this is incorrect, in his answer to the duplicated question. – Andrew Grimm Sep 27 '10 at 10:38
This is wrong. Please read Ruby-Forum.Com/topic/151660 and the links provided therein. – Jörg W Mittag Sep 27 '10 at 12:46
@Jörg et al., I've updated my answer. – Daniel Vandersluis Sep 27 '10 at 17:24

x ||= y often used instead of x = y if x == nil

share|improve this answer

The idea is the same as with other similar operators (+=, *=, etc):
a ||= b is a = a || b

And this trick is not limited to Ruby only: it goes through many languages with C roots.

edit to repel downvoters.
See one of Jörg's links for more accurate approximation, for example this one.
This is exactly why I don't like Ruby: nothing's ever what it seems.

share|improve this answer
1  
Notably, not C or C++ or Java. – TokenMacGuy Sep 27 '10 at 3:43
@TokenMacGuy I mean general 'trick': producing 'a @= b' from 'a = a @ b'. – Nikita Rybak Sep 27 '10 at 3:49
This is wrong. Please read Ruby-Forum.Com/topic/151660 and the links provided therein. – Jörg W Mittag Sep 27 '10 at 12:46

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