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