std::shared_future
template class shared_future; (1) (since C++11) template class shared_future; (2) (since C++11) template class shared_future; (3) (since C++11) The class template std::shared_future provides a mechanism to access the result of asynchronous operations, similar to std::future, except that multiple threads are allowed to wait for the same shared state. Unlike…
