std::operator<<(std::error_code)
Определено в заголовке <system_error> | ||
|---|---|---|
template< class CharT, class Traits >
std::basic_ostream<CharT,Traits>&
operator<<( basic_ostream<CharT,Traits>& os, const error_code& ec );
| (с C++11) |
Выполняет операцию потокового вывода для кода ошибки ec.
Эквивалентно os << ec.category().name() << ':' << ec.value().
Параметры
| os | - | поток вывода для вставки данных |
| ec | - | код ошибки |
Возвращаемое значение
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