Just wondering what '!!' is in ruby.
thanks!
|
1
|
|
|
|
|
|
It returns true if the object on the right is not nil and not false, false if it is nil or false
|
|||
|
|
! means negate boolean state, two !'s is nothing special, other than a double negation.
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 "if 'some string'" and "if true" is the exact same flow, but some people find it useful to explicitly return a boolean. |
||
|
|
|
|
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:
|
||
|
|
|
not not. It's used to convert a value to a boolean
Its not really good practice to use though since the only false values to ruby are nil and false, so its usually best to let that convention stand. Think of it as
|
||
|