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

< cpp‎ | utility‎ | expected
template< class F >
constexpr auto transform( F&& f ) &;
(1) (since C++23)
template< class F >
constexpr auto transform( F&& f ) const&;
(2) (since C++23)
template< class F >
constexpr auto transform( F&& f ) &&;
(3) (since C++23)
template< class F >
constexpr auto transform( F&& f ) const&&;
(4) (since C++23)

If *this contains an expected value, invokes f and returns a std::expected object that contains its result; otherwise, returns a std::expected object that contains a copy of error().

If T is not (possibly cv-qualified) void, the contained value (**this) is passed as an argument to f; otherwise f takes no argument.

Let U be:

U must be a valid value type for std::expected. A variable of type U must be constructible from the result of invocation (but does not need to be move-constructible). The return type is std::expected<U, E>.

1-2) If *this contains an expected value:
  1. Invokes f as if by
  2. Then
    • if std::is_void_v<U> is false, returns a std::expected object that contains an expected value, direct-initialized from the result of invocation;
    • otherwise, returns std::expected<U, E>().

Otherwise (*this contains an error value), returns std::expected<U, E>(std::unexpect, error()).

These overloads participate in overload resolution only if std::is_constructible_v<E, decltype(error())> is true.
3-4) If *this contains an expected value:
  1. Invokes f as if by
  2. Then
    • if std::is_void_v<U> is false, returns a std::expected object that contains an expected value, direct-initialized from the result of invocation;
    • otherwise, returns std::expected<U, E>().

Otherwise (*this contains an error value), returns std::expected<U, E>(std::unexpect, std::move(error())).

These overloads participate in overload resolution only if std::is_constructible_v<E, decltype(std::move(error()))> is true.

Parameters

f - a suitable function or Callable object whose call signature returns a non-reference type

Return value

A std::expected object containing either the result of f or an error value, as described above.

Example

See also

(C++23)
returns the expected itself if it contains an expected value; otherwise, returns an expected containing the transformed unexpected value
(public member function)