std::experimental::shared_future::is_ready
From cppreference.com
                    
                                        
                    < cpp | experimental | shared future
                    
                                                            
                    
| bool is_ready() const; | ||
Checks if the associated shared state is ready.
The behavior is undefined if valid() is false.
| Contents | 
[edit] Parameters
(none)
[edit] Return value
true if the associated shared state is ready, otherwise false.
[edit] Example
| This section is incomplete Reason: no example | 
[edit] See also
| checks if the future has a shared state (public member function of std::shared_future) | 


