I am using the following code to check if a variable is not nil and not zero
if(discount != nil && discount != 0)
.
.
.
end
Is there a better way to do this?
|
|
I am using the following code to check if a variable is not nil and not zero
Is there a better way to do this?
|
||||
|
|
|
unless discount.nil? || discount == 0 # ... end |
||
|
|
|
Isn't this the same question as Best ruby idiom for nil or zero? |
||
|
|
|
|
Beware of the usual disclaimers... great power/responsibility, monkey patching leading to the dark side etc. |
|||
|
|
|
You could initialize discount to 0 as long as your code is guaranteed not to try and use it before it is initialized. That would remove one check I suppose, I can't think of anything else. |
||
|
|
|
|
You could do this:
The order is important here, because if |
||
|
|
|
|
unless [nil, 0].include?(discount) # ... end |
||
|
|
|
|
|
||
|
|
|
|
I believe the following is good enough for ruby code. I don't thin I could write a unit test that showed any difference between this and the original. if discount != 0 end |
||
|
|