Sorry for asking so simple question, but I cannot find the answer easily. Google says nothing interesting about "C++ negation integral_constant" and similar queries.
Is there in C++11 any trait that make std::true_type
from std::false_type
and vice versa? In other words, I'd like some more readeble version of
std::is_same<my_static_bool, std::false_type>
I know of course I can write it myself, but I'd like to use the existing one if there is such.