Possible Duplicate:
What does ||= mean in Ruby?
What does ||= mean in Ruby?
|
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.
|
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 See http://dablog.rubypal.com/2008/3/25/a-short-circuit-edge-case for more discussion. |
|||||||||||
|
|
The idea is the same as with other similar operators ( And this trick is not limited to Ruby only: it goes through many languages with C roots. edit to repel downvoters. |
|||||||||
|