命名空间
变体
操作

std::is_error_condition_enum<std::errc>

来自 cppreference.com
< cpp‎ | error‎ | errc
 
 
实用程序库
语言支持
类型支持 (基本类型, RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(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
(类模板) [编辑]