Can anybody tell me why a lot of Ruby boolean methods use this double negation convention?
!!(boolean expression)
|
Can anybody tell me why a lot of Ruby boolean methods use this double negation convention?
|
|||||
|
|
The double negation ensures that no matter the initial value, you will always get This is handy because it avoids dangling references to objects you no longer require, or having to differentiate between two types of false value, Often you will see methods written like this:
This will return
In this case if you save the value, you're actually saving the whole |
||||
|
|
|
Suppose you want to define a method that returns a boolean. For example, whether a string matches a regex.
If you do the above, it will return
it will return |
|||
|
|
|
In my opinion, Ruby is just a little too clever about Booleans. This is a workaround for the cases when the cleverness causes problems. Here's the excessive cleverness: there's no Boolean class. Instead, there's a convention under which any value can serve as a boolean. In a context where a true-or-false value is required, I guess this works fine most of the time, but every once in a very long while you need a boolean value that is always |
|||
|
|