|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Coroutine traits | ||||
(C++20) | ||||
| Coroutine handle | ||||
(C++20) | ||||
| No-op coroutines | ||||
(C++20) | ||||
(C++20) | ||||
| Trivial awaitables | ||||
(C++20) | ||||
(C++20) | ||||
| Range generators | ||||
(C++23) |
| Member functions | ||||
coroutine_handle::from_promise | ||||
| Conversion | ||||
| Observers | ||||
| Control | ||||
| Promise access | ||||
| Export/import | ||||
| Non-member functions | ||||
| Helper classes | ||||
static coroutine_handle from_promise( Promise& p); | (since C++20) | |
Creates acoroutine_handle from the promise object of a coroutine. The createdcoroutine_handle refers the coroutine, andpromise() returns a reference top.
The behavior is undefined ifp is not a reference to a promise object. This function is only provided for the primary template, i.e. specializationsstd::coroutine_handle<> andstd::coroutine_handle<std::noop_coroutine_promise> do not have this function.
Contents |
| p | - | promise object of a coroutine to refer |
Acoroutine_handle referring the given coroutine.
| This section is incomplete Reason: no example |
constructs acoroutine_handle object(public member function)[edit] | |
[static] | imports a coroutine from a pointer (public static member function)[edit] |
(C++20) | creates a coroutine handle that has no observable effects when resumed or destroyed (function)[edit] |