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

来自cppreference.com
 
 
 
 
 
bool operator==( const error_category& rhs ) const noexcept;
(1) (C++11 起)
bool operator!=( const error_category& rhs ) const noexcept;
(2) (C++11 起)
bool operator<( const error_category& rhs ) const noexcept;
(3) (C++11 起)

与另一 error_category 比较。

1) 检查 *thisrhs 是否指代同一对象。
2) 检查 *thisrhs 是否不指代同一对象。
3)this&rhs 的顺序排序 *thisrhs 。等价于 std::less<const error_category*>()(this, &rhs)

参数

rhs - 指定要比较的 error_category

返回值

1)*thisrhs 指代同一对象,则为 true ,否则为 false
2)*thisrhs 不指代同一对象,则为 true ,否则为 false
3) 若按 this&rhs 的顺序, *this 小于 rhs 则为 true