命名空间
变体
操作

std::unexpect_t, std::unexpect

来自 cppreference.cn
< cpp‎ | 工具库‎ | expected
 
 
 
 
定义于头文件 <expected>
struct unexpect_t { explicit unexpect_t() = default; };
(1) (C++23 起)
inline constexpr std::unexpect_t unexpect{};
(2) (C++23 起)
1) 用于在 std::expected 对象中原地构造非预期值的标签类型。
2) 类型为 const std::unexpect_t 的常量,通常直接传递给 std::expected 的构造函数以构造非预期值。

[编辑] 注意

与其他构造标签类型一样,unexpect_t 是一个带有显式默认构造函数的平凡、空类。

[编辑] 另请参阅

构造 expected 对象
(公共成员函数) [编辑]
原地构造标签
(标签)[编辑]