Possible Duplicate:
What does !! mean in ruby?
what is this function doing?
def current_product?
!!current_product
end
Isn't that a double negative?
what is this function doing?
Isn't that a double negative? |
|||||||
|
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.
|
|
|||
|
|
|
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 |
|||
|
|
|
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 |
|||
|
|