Possible Duplicate:
What does ||= mean in Ruby?
what does the below line mean?
a ||= {}
a ||= 1
in irb it always returns the class of a, as hash, for both the above lines. Thanks in advance.
what does the below line mean?
in irb it always returns the class of a, as hash, for both the above lines. Thanks in advance. |
||||
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.
|
In your example
Typical usage I've seen is to initialise static variables, ie.
EDIT: It bears mentioning that For more information, read the definitive list of ||= threads and pages. |
|||||||||||||
|
|
It means
i.e.
|
|||||||||
|
|
you can read "a ||= {}" like this. If "a" is defined, then ignore the expression on the right side. Else, set "a" equals to the expression on the right side. In the first line, "a" is probably undefined so that line sets "a" to the expression on the right which is the empty hash. On the second line, "a" is already set as a {} so it is ignoring the expression on the right which has a value of 1. |
|||||||
|
||=mean in Ruby?, What does||=mean in Ruby?, what is||=in ruby?, Double Pipe Symbols in Ruby Variable Assignment?, What does the “||=” operand stand for in ruby, Is the ruby operator||=intelligent? and probably many others as well. – Jörg W Mittag Mar 8 '11 at 17:34||=(OR Equal) threads and pages. What does||=mean in Ruby? and What does||=mean in Ruby? are even linked to under Related Questions. – Jörg W Mittag Mar 8 '11 at 17:35