I've been using Ruby for a while now, and I keep seeing this:
foo ||= bar
What is it?
|
I've been using Ruby for a while now, and I keep seeing this:
What is it?
| ||||
|
feedback
|
|
This will assign EDIT: or false, thanks @mopoke. | |||
|
feedback
|
|
Operator ||= is a shorthand form of the expression: x = x || "default" Operator ||= can be shorthand for code like: x = "(some fallback value)" if x.nil? From: http://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Operators | |||
|
feedback
|
|
Assign | |||||
feedback
|
|
If you're using it for an instance variable, you may want to avoid it. That's because
Can raise a warning if
or
depending on whether you want to merely check if @foo is initialized, or check if @foo has truthiness (ie isn't | |||
|
feedback
|