Template Struct has_operator_lt_impl

Struct Documentation

template<typename T>
struct has_operator_lt_impl

Public Types

using type = typename std::is_same<bool, decltype(test<T>(0))>::type

Public Static Functions

template<class U>
static auto test(U*) -> decltype(std::declval<U>() < std::declval<U>())
template<typename>
static auto test(...) -> std::false_type