std::expected<T,E>::or_else
来自 cppreference.com
主模板 |
||
template< class F > constexpr auto or_else( F&& f ) &; |
(1) | (自 C++23 起) |
template< class F > constexpr auto or_else( F&& f ) const&; |
(2) | (自 C++23 起) |
template< class F > constexpr auto or_else( F&& f ) &&; |
(3) | (自 C++23 起) |
template< class F > constexpr auto or_else( F&& f ) const&&; |
(4) | (自 C++23 起) |
void 部分特化 |
||
template< class F > constexpr auto or_else( F&& f ) &; |
(5) | (自 C++23 起) |
template< class F > constexpr auto or_else( F&& f ) const&; |
(6) | (自 C++23 起) |
template< class F > constexpr auto or_else( F&& f ) &&; |
(7) | (自 C++23 起) |
template< class F > constexpr auto or_else( F&& f ) const&&; |
(8) | (自 C++23 起) |
如果 *this 包含一个意外值,则使用 *this 的意外值为参数调用 f 并返回其结果。否则,返回一个表示预期值的 std::expected
对象。
给定类型 G
为
1,2) std::remove_cvref_t<std::invoke_result_t<F, decltype(error())>>
3,4) std::remove_cvref_t<std::invoke_result_t<F, decltype(std::move(error()))>>
5,6) std::remove_cvref_t<std::invoke_result_t<F, decltype(error())>>
7,8) std::remove_cvref_t<std::invoke_result_t<F, decltype(std::move(error()))>>
如果 G
不是 std::expected
的特化,或 std::is_same_v<G::value_type, T> 为 false,则程序格式错误。
内容 |
[编辑] 参数
f | - | 一个合适的函数或 Callable 对象,返回一个 std::expected |
[编辑] 返回值
重载 | has_value() 的值 | |
---|---|---|
true | false | |
(1,2) | G(std::in_place, val )
|
std::invoke(std::forward<F>(f), error()) |
(3,4) | G(std::in_place, std::move(val ))
|
std::invoke(std::forward<F>(f), std::move(error())) |
(5,6) | G() | std::invoke(std::forward<F>(f), error()) |
(7,8) | std::invoke(std::forward<F>(f), std::move(error())) |
[编辑] 备注
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_expected |
202211L | (C++23) | std::expected 的单子函数 |
[编辑] 示例
本节内容不完整 原因:没有示例 |
[编辑] 缺陷报告
以下行为变更缺陷报告被追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确的行为 |
---|---|---|---|
LWG 3938 | C++23 | 期望值通过 value()[1] 获取 | 更改为 **this |
LWG 3973 | C++23 | 期望值通过 **this[2] 获取 | 更改为 val |
[编辑] 另请参阅
如果 expected 包含期望值,则返回 expected 本身;否则,返回包含变换后的意外值的 expected (公有成员函数) |