std::common_comparison_category
Min standard notice:
Header: <compare>
The class template std::common_comparison_category provides an alias (as the member typedef type) for the strongest comparison category to which all of the template arguments Ts… can be converted.
# Declarations
template< class... Ts >
struct common_comparison_category
{
using type = /* see below */ ;
};
(since C++20)
# Example
This section is incompleteReason: no example