I am looking for a concise way to check a value to see if it is nil or zero. Currently I am doing something like:
if (!val || val == 0)
# Is nill or zero
end
But this seems very clumsy.
|
2
|
I am looking for a concise way to check a value to see if it is nil or zero. Currently I am doing something like:
But this seems very clumsy.
|
|||
|
|
|
|
Objects have a nil? method. See api here.
Or, for just one instruction:
|
||||||||||||||
|
|
|
nil.to_i returns zero, so I often do this:
However, you will get an exception if val is ever an object that does not respond_to #to_i. |
||
|
|
|
|
Another solution:
|
||
|
|
|
You can use
Then you can use anything that works with
It's not exactly good OOP, but it's very flexible and it works. My Of course
The right thing to do is of course to define a method or function. Or, if you have to do the same thing with many values, use a combination of those nice iterators. |
||
|
|
|
|
I've just removed my previous answer. I misunderstood you and advised to use Either way, I would extend |
||
|
|
|
|
If you really like method names with question marks at the end:
Your solution is fine, as are a few of the other solutions. Ruby can make you search for a pretty way to do everything, if you're not careful. |
||
|
|
|
|
|
||
|
|
|
|
To be as idiomatic as possible, I'd suggest this.
Because:
|
||
|
|
|
|
I deal with this by defining an "is?" method, which I can then implement differently on various classes. So for Array, "is?" means "size>0"; for Fixnum it means "self != 0"; for String it means "self != ''". NilClass, of course, defines "is?" as just returning nil. |
||
|
|
|
|
Rails does this via attribute query methods, where in addition to false and nil, 0 and "" also evaluate to false.
However it has its share of detractors. http://www.joegrossberg.com/archives/002995.html |
||
|
|
|
|
You can use the Object.nil? to test for nil specifically (and not get caught up between false and nil). You can monkey-patch a method into Object as well.
This is not recommended as changes to Object are difficult for coworkers to trace, and may make your code unpredictable to others. |
||||||
|
|
|
First off I think that's about the most concise way you can check for that particular condition. Second, to me this is a code smell that indicates a potential flaw in your design. Generally nil and zero shouldn't mean the same thing. If possible you should try to eliminate the possibility of val being nil before you hit this code, either by checking that at the beginning of the method or some other mechanism. You might have a perfectly legitimate reason to do this in which case I think your code is good, but I'd at least consider trying to get rid of the nil check if possible. |
||
|
|
|
I believe your code is incorrect; it will in fact test for three values: The best I can come up with right now is
Which of course is not very clever, but (very) clear. |
||