Check if the asynchronous result associated with an instance of std::experimental::future
is ready, and has a stored value.
bool has_value() const;
this->valid()
would return true
.
true
if the asynchronous
result associated with *this
is ready
and has a stored value, false
otherwise.
Nothing.
#include <experimental/future>