It's hard to search this in google because it consists of symbol? What does ||= stand for? And how does it work?
Thanks.
|
1
|
It's hard to search this in google because it consists of symbol? What does ||= stand for? And how does it work? Thanks.
|
||
|
|
|
|
It assigns a value if not already assigned. Like this:
In the first example, a will be set to 1. In the second one, a will still be 1. |
||||
|
|
|
This is an 'abbreviated assignment' (see Ruby Pocket Reference, page 10) a = a || b (meaning a is assigned the value formed by logical or of a, b becomes a ||= b Almost all operators have an abbreviated version (+= *= &&= etc). |
||
|
|
|
|
If b is nil, assign a to it.
If b is not nil, don't change it.
|
||
|
|
|
|
|
||
|
|
|
|
Cannot get any better explanation than The strange ||= operator :
|
||
|
|
|
|
i can only guess, but i assume it stands for an logical operator combined with setting a variable (like ^=, +=, *= in other languages) so edit: i guessed right, see http://phrogz.net/ProgrammingRuby/language.html#table_18.4
|
|||
|
|