Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does !! mean in ruby?

what is this function doing?

def current_product?
   !!current_product
end

Isn't that a double negative?

share|improve this question
1  
Duplicate of What does !! mean in ruby?. – Andrew Grimm Dec 9 '10 at 2:07
The same, as in other languages... – Nakilon Dec 9 '10 at 2:15

marked as duplicate by Andrew Grimm, eldarerathis, Nakilon, Cameron Skinner, Antal S-Z Dec 9 '10 at 2:21

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 5 down vote accepted

!! is basically a cast to boolean. If current_product is truthy, !current_product is false and !!current_product is true, and vice versa. I.e. it converts truthy values to true and falsy values to false.

share|improve this answer

It's effectively a cast/conversion to boolean.

Similar question, but for C++: Doube Negation in C++ code

Also a pretty decent post about it here: !! (The double bang / double not) in Ruby

share|improve this answer

This is a pattern you'll see in any language where every object has a truth value, but there are canonical booleans (whether they be called True and False, 1 and 0, 1 and "", t and nil, whatever). !!x is essentially a "cast to boolean", in that !!x has the same truth-value as x, but !!x will always be one of the canonical true/false values, instead of any old true/false value.

share|improve this answer

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