命名空间
变体
操作

std::error_category::operator==,!=,<,<=>

来自 cppreference.com
 
 
实用程序库
语言支持
类型支持 (基本类型、RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(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)

 
 
std::error_category
成员函数
error_category::operator==error_category::operator!=error_category::operator<error_category::operator<=>
(直至 C++20)(直至 C++20)(C++20)
 
bool operator==( const error_category& rhs ) const noexcept;
(1) (自 C++11 起)
bool operator!=( const error_category& rhs ) const noexcept;
(2) (自 C++11 起)
(直至 C++20)
bool operator<( const error_category& rhs ) const noexcept;
(3) (自 C++11 起)
(直至 C++20)
std::strong_ordering operator<=>( const error_category& rhs ) const noexcept;
(4) (自 C++20 起)

与另一个错误类别进行比较。

1) 检查*thisrhs 是否引用同一个对象。
2) 检查*thisrhs 是否不引用同一个对象。
3) 通过this&rhs 的顺序对*thisrhs 进行排序。等效于std::less<const error_category*>()(this, &rhs).
4) 通过this&rhs 的顺序对*thisrhs 进行排序。等效于std::compare_three_way()(this, &rhs).

<<=>>=!= 运算符分别由operator<=>operator== 合成

(自 C++20 起)

[编辑] 参数

rhs - 指定要比较的error_category

[编辑] 返回值

1) 如果*thisrhs 引用同一个对象,则为true,否则为false
2) 如果*thisrhs 不引用同一个对象,则为true,否则为false
3) 如果*this 小于rhs(由this&rhs 的顺序定义),则为true
4) 如果*this 小于rhs(由this&rhs 的顺序定义),则为std::strong_order::less,否则如果rhs 小于*this(按顺序),则为std::strong_order::greater,否则为std::strong_order::equal