#include <mp_utils.hpp>
template<class T, class U>
const std::remove_reference_t<T>& t,
const std::remove_reference_t<U>& u
) {
{ t == u } -> std::convertible_to<bool>;
{ t != u } -> std::convertible_to<bool>;
{ u == t } -> std::convertible_to<bool>;
{ u != t } -> std::convertible_to<bool>;
}
Definition at line 610 of file mp_utils.hpp.