Defined in header <compare> | ||
---|---|---|
template< class T > constexpr std::strong_ordering strong_order(const T& a, const T& b); | (since C++20) |
Compares two values using 3-way comparison and produces a result of type std::strong_ordering
.
Specifically,
std::numeric_limits<T>::is_iec559
is true
, performs the ISO/IEC/IEEE 60559 totalOrder comparison of floating-point values and returns that result as a value of type std::strong_ordering
(note: this comparison can distinguish between the positive and negative zero and between the NaNs with different representations) a <=> b
is well-formed and its result is convertible to std::strong_ordering
, returns that result. a <=> b
is well-formed, but its result is not convertible to std::strong_ordering
, then the function is defined as deleted. a <=> b
is ill-formed, but the expressions a == b
and a < b
are both well-formed and convertible to bool
, a == b
is true
, returns std::strong_ordering::equal
a < b
is true
, returns std::strong_ordering::less
std::strong_ordering::greater
a, b | - | values to compare |
A value of type std::strong_ordering
, as described above.
(C++20) | the result type of 3-way comparison that supports all 6 operators and is substitutable (class) |
(C++20) | performs 3-way comparison and produces a result of type std::weak_ordering (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/utility/compare/strong_order