std::is_error_condition_enum<std::errc>
来自 cppreference.com
定义在头文件 <system_error> 中 |
||
template<> struct is_error_condition_enum<std::errc> : std::true_type; |
(自 C++11 起) | |
指定 std::errc 是一个错误条件枚举。这使得能够隐式转换为 std::error_condition。
内容 |
从 std::integral_constant 继承而来
成员常量
value [静态] |
true (公有静态成员常量) |
成员函数
operator bool |
将对象转换为 bool, 返回 value (公有成员函数) |
operator() (C++14) |
返回 value (公有成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[编辑] 另请参见
(C++11) |
标识枚举作为 std::error_condition (类模板) |