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.
Is there a Ruby operator that does the same thing as C#'s ?? operator?
| ||||
|
feedback
|
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.
|
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. | |||
|
feedback
|
|
If you don't mind coalescing false, you can use the || operator:
If false can be a valid value, you can do:
Where b is checked for nil, and if it is, a is assigned the value of c, and if not, b. | |||||
feedback
|
|
Be aware that Ruby has specific features for the usual null coalescing to Instead of
...you can (because
This makes certain common design patterns like:
...look a bit nicer:
| |||||
feedback
|