On this page
std::operator<<(std::error_code)
Defined in header <system_error> |
||
---|---|---|
|
(since C++11) |
Performs stream output operation on error code ec
.
Equivalent to os << ec.category().name() << ':' << ec.value()
.
Parameters
os | - | output stream to insert data to |
ec | - | error code |
Return value
os
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/error/error_code/operator_ltlt