GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::coroutine_handle::from_address(3) C++ Standard Libary std::coroutine_handle::from_address(3)

std::coroutine_handle::from_address - std::coroutine_handle::from_address


static constexpr coroutine_handle from_address( void *addr ); (since C++20)


Creates a coroutine_handle from a null pointer value or an underlying address of
another coroutine_handle. The underlying address of return value is addr.


The behavior is undefined if addr is neither a null pointer value nor an underlying
address of a coroutine_handle. The behavior is also undefined if the addr is an
underlying address of a std::coroutine_handle<P1>, where both Promise and P1 are not
void, and P1 is different from Promise.


This function is not declared for specialization
std::coroutine_handle<std::noop_coroutine_promise>.


addr - underlying address to import


A std::coroutine_handle<Promise> whose underlying address is addr.


If addr is not a null pointer value, it must be obtained from a prior call to
address() on a coroutine_handle referring to some coroutine.


This section is incomplete
Reason: no example


constructor constructs a coroutine_handle object
(C++20) (public member function)
from_promise creates a coroutine_handle from the promise object of a coroutine
[static] (C++20) (public static member function)
noop_coroutine creates a coroutine handle that has no observable effects when
(C++20) resumed or destroyed
(function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.