std::unexpect_t, std::unexpect

来自cppreference.com
< cpp‎ | utility‎ | expected
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)(C++20)(C++20)
(C++20)
swap 与类型运算
(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)
 
 
在标头 <expected> 定义
struct unexpect_t {

    explicit unexpect_t() = default;

};
(1) (C++23 起)
inline constexpr unexpect_t unexpect{};
(2) (C++23 起)
1) 用于在 std::expected 对象中原位构造不期待的值的标签类型。
2) const std::unexpect_t 类型的常量,通常直接传递给 std::expected 的构造函数以构造不期待的值。

注解

同其他构造标签类型, unexpect_t 是拥有 explicit 构造函数的平凡空类。

参阅

构造 expected 对象
(公开成员函数)