vote up 6 vote down star
1

Just wondering what '!!' is in ruby.

thanks!

flag

4 Answers

vote up 12 vote down check

It returns true if the object on the right is not nil and not false, false if it is nil or false

def logged_in?   
  !!@current_user
end
link|flag
Was it obvious it came from Restful_Auth?! :D – Cameron Feb 7 at 22:12
Not only if it's nil. – womble Feb 8 at 1:19
vote up 4 vote down

! means negate boolean state, two !'s is nothing special, other than a double negation.

!true == false
# => true

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.

!"wtf"
# => false

!!"wtf"
# => true

A more real use case:

def title
  "I return a string."
end

def title_exists?
  !!title
end

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.

link|flag
vote up 4 vote down

Note that this idiom exists in other programming languages as well. C didn't have an intrinsic bool type, so all booleans were typed as int instead, with canonical values of 0 or 1. Takes this example (parentheses added for clarity):

!(1234) == 0
!(0) == 1
!(!(1234)) == 1

The "not-not" syntax converts any non-zero integer to 1, the canonical boolean true value.

In general, though, I find it much better to put in a reasonable comparison than to use this uncommon idiom:

int x = 1234;
if (!!x); // wtf mate
if (x != 0); // obvious
link|flag
Or just if (x). !! is useful when you need to get either 0/1. You may or may not consider (x) ? 1 : 0 clearer. – derobert Feb 8 at 8:44
vote up 20 vote down

not not. It's used to convert a value to a boolean

!!nil   #=> false
!!"abc" #=> true
!!false #=> false

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

!(!some_val)
link|flag
So it's a double negative? – Ross Feb 7 at 22:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.