std::coroutine_handle<Promise>::operator coroutine_handle<>

This conversion function converts a std::coroutine_handle value to a std::coroutine_handle<> holding the same underlying address. It effectively erases the promise type.

# Declarations

constexpr operator coroutine_handle<>() const noexcept;

(since C++20)

# Return value

std::coroutine_handle<>::from_address(address())

# See also