Construct one std::atomic_future object from another,
so that both the source and the copy refer to the asynchronous result
associated with the source std::atomic_future object, if any.
atomic_future(atomic_future const& other);
- Effects:
Constructs a new
std::atomic_futureinstance.- Postconditions:
The asynchronous result associated with
otherprior to the invocation of the constructor is associated with the newly-constructedstd::atomic_futureobject andother.- Throws:
Nothing.
Header
#include <future>