13 #ifndef TINYMPL_NOT_EQUAL_TO_HPP
14 #define TINYMPL_NOT_EQUAL_TO_HPP
16 #include <type_traits>
17 #include <tinympl/equal_to.hpp>
26 template<
class A,
class B>
struct not_equal_to : std::integral_constant<bool,! equal_to<A,B>::value > {};
30 #endif // TINYMPL_NOT_EQUAL_TO_HPP
Determines whether the types A and B are not equal.
Definition: not_equal_to.hpp:26