std::expected<T,E>::and_then
来自cppreference.com
主模板 |
||
template< class F > constexpr auto and_then( F&& f ) &; |
(1) | (C++23 起) |
template< class F > constexpr auto and_then( F&& f ) const&; |
(2) | (C++23 起) |
template< class F > constexpr auto and_then( F&& f ) &&; |
(3) | (C++23 起) |
template< class F > constexpr auto and_then( F&& f ) const&&; |
(4) | (C++23 起) |
void 部分特化 |
||
template< class F > constexpr auto and_then( F&& f ) &; |
(5) | (C++23 起) |
template< class F > constexpr auto and_then( F&& f ) const&; |
(6) | (C++23 起) |
template< class F > constexpr auto and_then( F&& f ) &&; |
(7) | (C++23 起) |
template< class F > constexpr auto and_then( F&& f ) const&&; |
(8) | (C++23 起) |
如果 *this 表示预期值,那么调用 f 并返回它的结果。否则返回一个包含非预期值的 std::expected
对象,以 *this 的非预期值初始化该值。
5-8) 不以任何实参调用 f。
给定类型 U
为
5-8) std::remove_cvref_t<std::invoke_result_t<F>>
如果 U
不是 std::expected
的特化,或者 std::is_same_v<U::error_type, E> 是 false,那么程序非良构。
参数
f | - | 适合的函数或可调用 (Callable) 对象,返回 std::expected
|
返回值
重载 | has_value() 的值
| |
---|---|---|
true | false | |
(1,2) | std::invoke(std::forward<F>(f), val )
|
U(std::unexpect, error()) |
(3,4) | std::invoke(std::forward<F>(f),std::move(val ))
|
U(std::unexpect, std::move(error())) |
(5,6) | std::invoke(std::forward<F>(f)) | U(std::unexpect, error()) |
(7,8) | U(std::unexpect, std::move(error())) |
注解
功能特性测试宏 | 值 | 标准 | 功能特性 |
---|---|---|---|
__cpp_lib_expected |
202211L | (C++23) | std::expected 的单子式函数
|
示例
本节未完成 原因:暂无示例 |
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 3938 | C++23 | 通过 value() 获取预期值[1] | 改成 **this |
LWG 3973 | C++23 | 通过 **this 获取预期值[2] | 改成 val
|
参阅
(C++23) |
expected 中非预期值的原位构造标签 (类) (常量) |
若存在预期值则返回含有变换后的预期值的 expected ,否则返回 expected 本身 (公开成员函数) |