|
constexpr friend auto | operator== (max_t, max_t) -> std::true_type |
|
constexpr friend auto | operator!= (max_t, max_t) -> std::false_type |
|
constexpr friend auto | operator< (max_t, max_t) -> std::false_type |
|
constexpr friend auto | operator> (max_t, max_t) -> std::false_type |
|
constexpr friend auto | operator<= (max_t, max_t) -> std::true_type |
|
constexpr friend auto | operator>= (max_t, max_t) -> std::true_type |
|
template<typename T > |
constexpr friend auto | operator== (T t, max_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator== (max_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator!= (T t, max_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator!= (max_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator< (T t, max_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator< (max_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator> (T t, max_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator> (max_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator<= (T t, max_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator<= (max_t, T t) -> bool |
|
template<typename T > |
constexpr friend auto | operator>= (T t, max_t) -> bool |
|
template<typename T > |
constexpr friend auto | operator>= (max_t, T t) -> bool |
|
Shorthand for std::numeric_limits::max().
Implicitly converts to the maximum representable value of any numeric type. For unsigned destination types, -1 is shorter, but much less clear. For signed destination types, there is no concise representation for a generic maximum.
Also serves as a max(a, b) function object.
Definition at line 194 of file stats.h.