copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
std::future - cppreference. com The class template std::future provides a mechanism to access the result of asynchronous operations: An asynchronous operation (created via std::async, std::packaged_task, or std::promise) can provide a std::future object to the creator of that asynchronous operation The creator of the asynchronous operation can then use a variety of methods to query, wait for, or extract a value from the std
std::async - cppreference. com The return type of std::async is std::future<V>, where V is: The call to std::async synchronizes with the call to f, and the completion of f is sequenced before making the shared state ready
std::future lt;T gt;::share - cppreference. com Transfers the shared state of *this, if any, to a std::shared_future object Multiple std::shared_future objects may reference the same shared state, which is not possible with std::future After calling share on a std::future, valid==false