CppDS.com

C++ 98 11 14 17 20 手册

std::is_error_condition_enum<std::errc>

来自cppreference.com
< cpp‎ | error‎ | errc
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
std::errc
非成员函数
帮助类
is_error_condition_enum
 
定义于头文件 <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>

参阅

鉴别枚举是否可作为 std::error_condition
(类模板)
关闭