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 对象,以 f 的结果初始化该值(或在结果类型是 void 时值初始化)。否则返回一个包含非预期值的 std::expected 对象,以 *this 的非预期值初始化该值。

1-4)*this 的预期值 val 作为实参调用 f
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 时才会参与重载决议。

参数

f - 适合的函数或 可调用 (Callable) 对象,它的返回类型不是引用类型

返回值

给定表达式 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()))

示例

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
LWG 3938 C++23 通过 value() 获取预期值[1] 改成 **this
LWG 3973 C++23 通过 **this 获取预期值[2] 改成 val
  1. value() 要求 E 可复制构造(见 LWG 问题 3843),而 operator* 不要求。
  2. **this 会触发实参依赖查找

参阅

若含有预期值则返回 expected 本身,否则返回含有变换后非预期值的 expected
(公开成员函数)