命名空间
变体
操作

std::expected<T,E>::transform

来自 cppreference.com
< cpp‎ | utility‎ | expected
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
主模板
template< class F >
constexpr auto transform( F&& f ) &;
(1) (自 C++23 起)
template< class F >
constexpr auto transform( F&& f ) const&;
(2) (自 C++23 起)
template< class F >
constexpr auto transform( F&& f ) &&;
(3) (自 C++23 起)
template< class F >
constexpr auto transform( F&& f ) const&&;
(4) (自 C++23 起)
void 部分特化
template< class F >
constexpr auto transform( F&& f ) &;
(5) (自 C++23 起)
template< class F >
constexpr auto transform( F&& f ) const&;
(6) (自 C++23 起)
template< class F >
constexpr auto transform( F&& f ) &&;
(7) (自 C++23 起)
template< class F >
constexpr auto transform( F&& f ) const&&;
(8) (自 C++23 起)

如果 *this 代表一个预期值,则调用 f 并返回一个包含预期值的 std::expected 对象,该对象使用其结果进行初始化(如果结果类型为 void,则使用值初始化)。否则,返回一个包含意外值的 std::expected 对象,该对象使用 *this 的意外值进行初始化。

1-4) f 使用 *this 的预期值 val 作为参数进行调用。
5-8) f 在没有参数的情况下进行调用。

给定类型 U

1,2) std::remove_cv_t<std::invoke_result_t<F, decltype((val))>>
3,4) std::remove_cv_t<std::invoke_result_t<F, decltype(std::move(val))>>

如果满足以下任何条件,则程序格式错误

  • U 不是 std::expected 的有效值类型。
  • std::is_void_v<U>false,并且以下相应的声明格式错误
1,2) U u(std::invoke(std::forward<F>(f), val));
3,4) U u(std::invoke(std::forward<F>(f), std::move(val)));
5-8) U u(std::invoke(std::forward<F>(f)));


1,2) 只有当 std::is_constructible_v<E, decltype(error())>true 时,这些重载才参与重载解析。
3,4) 这些重载仅当 std::is_constructible_v<E, decltype(std::move(error()))>true 时才参与重载解析。
5,6) 这些重载仅当 std::is_constructible_v<E, decltype(error())>true 时才参与重载解析。
7,8) 这些重载仅当 std::is_constructible_v<E, decltype(std::move(error()))>true 时才参与重载解析。

内容

[edit] 参数

f - 一个合适的函数或 Callable 对象,其调用签名返回一个非引用类型。

[edit] 返回值

给定表达式 expr 作为

1,2) std::invoke(std::forward<F>(f), val)
3,4) std::invoke(std::forward<F>(f),std::move(val))

返回值定义如下

 重载  has_value() 的值
true false
(1,2) std::expected<U, E>(std::unexpect, error())
(3,4) std::expected<U, E>
    (std::unexpect, std::move(error()))
(5,6) std::expected<U, E>(std::unexpect, error())
(7,8) std::expected<U, E>
    (std::unexpect, std::move(error()))

[edit] 示例

[edit] 缺陷报告

以下行为变更缺陷报告被追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 3938 C++23 预期值通过 value() 获得 [1] 更改为 **this
LWG 3973 C++23 预期值通过 **this[2] 更改为 val
  1. value() 要求 E 是可复制构造的(参见 LWG issue 3843),而 operator* 不需要。
  2. **this 可以触发 依赖于参数的查找

[edit] 参见

如果包含预期值,则返回 expected 本身;否则,返回一个包含变换后的非预期值的 expected
(公共成员函数) [edit]