Is it possible to implement the ?? operator in Ruby?
a = nil
b = 1
x = a ?? b # x should == 1
x = b ?? 2 # x should == 1
|
|
Is it possible to implement the ?? operator in Ruby?
|
||
|
|
|
|
You're looking for conditional assignment:
and the || operator
|
||
|
|
|
In Ruby, the short-circuiting Boolean operators ( So, since That means that, because However, that only works, because you don't use Booleans in your examples. If you expect to deal with Boolean values, that won't work:
In that case, you will have to use
or using the ternary conditional operator:
If you want to, you can wrap that up in a nice method:
This cute snippet brought to you by polymorphism, open classes and the fact that |
||
|
|
|
|
It ( |
|||
|