What does the following code mean in Ruby?
||=
Does it have any meaning or reason for the syntax?
|
|
|
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,
is equivalent to
and not equivalent to
However, that is only a first approximation, especially if
are all treated differently. |
|||||||||
|
|
The accepted answer is cryptic and sends the reader to external sources instead of answering directly, so I'll attempt an answer.
is a "conditional assignment operator". It is shorthand for It means "if For example:
Confusingly, it looks similar to other assignment operators (such as
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: |
||||
|
|
is equivalent to
and not
because of the situation where you define a hash with a default (the hash will return the default for any undefined keys)
if you use:
a is still:
but when you write it like so:
a becomes:
because you've assigned the value of itself at key |
|||
|
|
|
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:
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. |
|||||
|
equals to
no? It is used for "if x is not defined or otherwise empty, then put y into x" (default value, for example). |
|||||||||
|