std::strong_order
Min standard notice:
Header: <compare>
Compares two values using 3-way comparison and produces a result of type std::strong_ordering.
# Declarations
inline namespace /* unspecified */ {
inline constexpr /* unspecified */ strong_order = /* unspecified */;
}
(since C++20)
Call signature
template< class T, class U >
requires /* see below */
constexpr std::strong_ordering strong_order( T&& t, U&& u ) noexcept(/* see below */);
# Example
This section is incompleteReason: no example