negation#
Fully qualified name: carb::cpp::negation
Defined in carb/cpp/TypeTraits.h
-
template<typename B>
struct negation : public bool_constant<!bool(B::value)># A logical not of
Btrait.- Template Parameters:
B – The trait to evaluate the
valuemember of. This must have a member constantvaluewhich is convertible tobool. Use of cpp::bool_constant is helpful here.