bool operator== (const error_category& rhs) const noexcept;
bool operator!= (const error_category& rhs) const noexcept;
bool operator< (const error_category& rhs) const noexcept;
1
this == &
123
bool error_category::operator< (const error_category& rhs) const noexcept { return less <const error_category*>()(this,&rhs); }
true
false