|
template<typename T > |
constexpr friend auto | operator== (T t, min_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator== (min_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator!= (T t, min_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator!= (min_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator< (T t, min_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator< (min_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator> (T t, min_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator> (min_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator<= (T t, min_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator<= (min_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator>= (T t, min_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator>= (min_t, T t) -> bool |
|
constexpr friend auto | operator== (min_t, min_t) -> std::true_type |
|
constexpr friend auto | operator!= (min_t, min_t) -> std::false_type |
|
constexpr friend auto | operator< (min_t, min_t) -> std::false_type |
|
constexpr friend auto | operator> (min_t, min_t) -> std::false_type |
|
constexpr friend auto | operator<= (min_t, min_t) -> std::true_type |
|
constexpr friend auto | operator>= (min_t, min_t) -> std::true_type |
|
constexpr friend auto | operator== (max_t, min_t) -> std::false_type |
|
constexpr friend auto | operator== (min_t, max_t) -> std::false_type |
|
constexpr friend auto | operator!= (max_t, min_t) -> std::true_type |
|
constexpr friend auto | operator!= (min_t, max_t) -> std::true_type |
|
constexpr friend auto | operator< (max_t, min_t) -> std::false_type |
|
constexpr friend auto | operator< (min_t, max_t) -> std::true_type |
|
constexpr friend auto | operator> (max_t, min_t) -> std::true_type |
|
constexpr friend auto | operator> (min_t, max_t) -> std::false_type |
|
constexpr friend auto | operator<= (max_t, min_t) -> std::false_type |
|
constexpr friend auto | operator<= (min_t, max_t) -> std::true_type |
|
constexpr friend auto | operator>= (max_t, min_t) -> std::true_type |
|
constexpr friend auto | operator>= (min_t, max_t) -> std::false_type |
|
Shorthand for std::numeric_limits::min()
Implicitly converts to the minimum representable value of any numeric type. For unsigned destination types, this is always 0. For signed destination types, it depends on size.
Also serves as a min(a, b) function object.
Definition at line 306 of file stats.h.