命名空间
变体
操作

std::compare_three_way_result

来自 cppreference.com
< cpp‎ | utility
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
compare_three_way_result
(C++20)
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
在头文件 <compare> 中定义
template< class T, class U = T >
struct compare_three_way_result;
(自 C++20 起)

tu 分别表示 const std::remove_reference_t<T>const std::remove_reference_t<U> 的左值,如果表达式 t <=> u 形成良好,则提供成员 typedef type 等于 decltype(t <=> u),否则没有成员 type

如果程序为 std::compare_three_way_result 添加了专门化,则行为未定义。

内容

[编辑] 成员类型

名称 定义
type TU 的 const 限定左值上的 operator<=> 的结果类型

[编辑] 辅助类型

template< class T, class U = T >
using compare_three_way_result_t = compare_three_way_result<T, U>::type;
(自 C++20 起)

[编辑] 可能的实现

// recommended by Casey Carter
// see also: https://github.com/microsoft/STL/pull/385#discussion_r357894054
template<class T, class U = T>
using compare_three_way_result_t = decltype(
    std::declval<const std::remove_reference_t<T>&>() <=>
    std::declval<const std::remove_reference_t<U>&>()
);
 
template<class T, class U = T>
struct compare_three_way_result {};
 
template<class T, class U>
    requires requires { typename compare_three_way_result_t<T, U>; }
struct compare_three_way_result<T, U>
{
    using type = compare_three_way_result_t<T, U>;
};

[编辑] 示例

#include <compare>
#include <iostream>
#include <type_traits>
 
template<class Ord>
void print_cmp_type()
{
    if constexpr (std::is_same_v<Ord, std::strong_ordering>)
        std::cout << "strong ordering\n";
    else if constexpr (std::is_same_v<Ord, std::weak_ordering>)
        std::cout << "weak ordering\n";
    else if constexpr (std::is_same_v<Ord, std::partial_ordering>)
        std::cout << "partial ordering\n";
    else
        std::cout << "illegal comparison result type\n";
}
 
int main()
{
    print_cmp_type<std::compare_three_way_result_t<int>>();
    print_cmp_type<std::compare_three_way_result_t<double>>();
}

输出

strong ordering
partial ordering

[编辑] 另请参阅

支持所有 6 个运算符的三方比较的结果类型,不可替换,并允许不可比较的值
(类) [编辑]
支持所有 6 个运算符的三方比较的结果类型,不可替换
(类) [编辑]
支持所有 6 个运算符的三方比较的结果类型,可替换
(类) [编辑]