Possible Duplicate:
C# ?? operator in Ruby?

Is there a Ruby operator that does the same thing as C#'s ?? operator?

The ?? operator returns the left-hand operand if it is not null, or else it returns the right operand.

from http://msdn.microsoft.com/en-us/library/ms173224.aspx

link|improve this question

feedback

closed as exact duplicate by CTT, Cameron, Mladen Jablanović, John Saunders, coobird Jan 9 '11 at 8:23

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 9 down vote accepted

The name of the operator is the null-coalescing operator. Here is a blog post that covers Null Coalescing in C#, Ruby, JS, and Python.

link|improve this answer
feedback

If you don't mind coalescing false, you can use the || operator:

a = b || c

If false can be a valid value, you can do:

a = b.nil? ? c : b

Where b is checked for nil, and if it is, a is assigned the value of c, and if not, b.

link|improve this answer
I tried a = b or c; puts a. Surprise, surprise, in my ruby 1.8.6, it prints the value of b. The reason is that or has lower precedence than = – Shuo Jan 9 '11 at 5:55
You're right, but the || in the second example works properly. I will update. – Sean Hill Jan 9 '11 at 14:48
feedback

Be aware that Ruby has specific features for the usual null coalescing to [] or 0 or 0.0.

Instead of

x = y || [] # or...
x = y || 0

...you can (because NilClass implements them) just do...

x = y.to_a # => [] or ..
x = y.to_i # or .to_f, => 0

This makes certain common design patterns like:

(x || []).each do |y|

...look a bit nicer:

x.to_a.each do |y|
link|improve this answer
1  
You'll also often see that as [*x].each do |y|. – Michael Kohl Jan 9 '11 at 9:20
feedback

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