Construct one std::experimental::future
object from another,
transferring ownership of the asynchronous result associated with the
other std::experimental::future
object to the newly-constructed
instance.
future(future&& other);
Move-constructs a new std::experimental::future
instance from
other
.
The asynchronous result associated with other
prior to the invocation of the constructor is associated with the
newly-constructed std::experimental::future
object. other
has no associated asynchronous
result. this->valid()
returns the same value that other.valid()
returned before the invocation
of this constructor. other.valid()
returns false
.
Nothing.
#include <experimental/future>