The promise_type of Coro<T>. This is an internal implementation detail, and not part of the public pw_async2 API.
To understand this type, reference C++20 coroutine API documentation.
|
|
template<typename... Args> |
| static void * | operator new (std::size_t size, CoroContext coro_cx, const Args &...) noexcept |
| |
|
template<typename... Args> |
| static void * | operator new (std::size_t size, std::align_val_t align, CoroContext coro_cx, const Args &...) noexcept |
| |
|
template<typename MethodReceiver , typename... Args> |
| static void * | operator new (std::size_t size, const MethodReceiver &, CoroContext coro_cx, const Args &...) noexcept |
| |
|
template<typename MethodReceiver , typename... Args> |
| static void * | operator new (std::size_t size, std::align_val_t align, const MethodReceiver &, CoroContext coro_cx, const Args &...) noexcept |
| |
|
static void | operator delete (void *) |
| |