std::common_comparison_category

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

# See also