Just wondering what !! is in Ruby.
|
|
|
Not not. It's used to convert a value to a boolean:
Its usually not necessary to use though since the only false values to Ruby are Think of it as
One thing that is it used for legitimately is preventing a huge chunk of data from being returned. For example you probably don't want to return 3MB of image data in your |
|||||||||||||||
|
|
It returns
|
||||
|
Note that this idiom exists in other programming languages as well. C didn't have an intrinsic
The "not-not" syntax converts any non-zero integer to In general, though, I find it much better to put in a reasonable comparison than to use this uncommon idiom:
|
|||
|
|
It is commonly used to force a method to return a boolean. It will detect any kind of truthiness, such as string, integers and what not, and turn it into a boolean.
A more real use case:
This is useful when you want to make sure that a boolean is returned. IMHO it's kind of pointless, though, seeing that both |
||||
|
|
It's useful if you need to do an exclusive or. Copying from Matt Van Horn's answer with slight modifications:
I used it to ensure two variables were either both nil, or both not nil.
|
|||
|
|