class error_condition;
(since C++11)std::error_condition
holds a platform-independent value identifying an error condition. Like std::error_code, it is uniquely identified by an integer value and a std::error_category, but unlike std::error_code, the value is not platform-dependent.
A typical implementation holds one integer data member (the value) and a pointer to an std::error_category.
[edit] Member functions constructs anerror_condition
error_condition
to value â0â in generic_category
error_condition
error_category
for this error_condition
The comparison between a std::error_code and a std::error_condition
is defined by their error categories. Notably, an error condition of std::generic_category may compare equal to an error code of a specific category (e.g. std::system_category), if they represent the same kind of error.
A std::errc value can be compared to an error code via implicit conversion to std::error_condition
.
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