std::shared_future::wait (3) Linux Manual Page
std::shared_future<T>::wait – std::shared_future<T>::wait Synopsis void wait() const; (since C++ 11) Blocks until the result becomes available. valid() == true after the call. The behavior is undefined if valid()== false before the call to this function. Parameters (none) Return value (none) Exceptions (none) Notes The implementations are encouraged to detect the case when valid == false…
