bool operator==( const error_category& rhs ) const noexcept;
(1) (since C++11)bool operator!=( const error_category& rhs ) const noexcept;
(2) (since C++11)bool operator<( const error_category& rhs ) const noexcept;
(3) (since C++11)Compares to another error category.
1) Checks whether *this and rhs refer to the same object.
2) Checks whether *this and rhs do not refer to the same object.
3)Orders
*thisand
rhsby the order of
thisand
&rhs. Equivalent to
std::less<const error_category*>()(this, &rhs).
The <
, <=
, >
, >=
, and !=
operators are synthesized from operator<=> and operator== respectively.
error_category
to compare [edit] Return value
1) true if *this and rhs refer to the same object, false otherwise.
2) true if *this and rhs do not refer to the same object, false otherwise.
3) true if *this is less than rhs as defined by the order of this and &rhs.
4) std::strong_order::less if *this is less than rhs as defined by the order of this and &rhs, otherwise std::strong_order::greater if rhs is less than *this in the order, otherwise std::strong_order::equal.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4