What does ||= mean in Ruby? [duplicate]
Possible Duplicate:
What does ||= mean in Ruby?
What does ||=
mean in Ruby?
Solution 1:
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.
Solution 2:
x ||= y
is often used instead of x = y if x == nil
Solution 3:
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.