I've been using Ruby for a while now, and I keep seeing this:

foo ||= bar

What is it?

link|improve this question

feedback

4 Answers

up vote 7 down vote accepted

This will assign bar to foo if (and only if) foo is nil or false.

EDIT: or false, thanks @mopoke.

link|improve this answer
Or if foo is false. – mopoke Jan 8 '10 at 3:02
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

link|improve this answer
feedback

Assign bar to foo unless foo is a true value (not false or nil).

link|improve this answer
2  
Should be: unless foo is truthy, where truthy means: not false or nil. – yfeldblum Jan 8 '10 at 3:04
feedback

If you're using it for an instance variable, you may want to avoid it. That's because

@foo ||= bar

Can raise a warning if @foo was previously uninitialized. You may want to use

@foo = bar unless defined?(@foo)

or

@foo = bar unless (defined?(@foo) and @foo)

depending on whether you want to merely check if @foo is initialized, or check if @foo has truthiness (ie isn't nil or false).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.