| Technical Specification | ||||
| Filesystem library(filesystem TS) | ||||
| Library fundamentals(library fundamentals TS) | ||||
| Library fundamentals 2(library fundamentals TS v2) | ||||
| Library fundamentals 3(library fundamentals TS v3) | ||||
| Extensions for parallelism(parallelism TS) | ||||
| Extensions for parallelism 2(parallelism TS v2) | ||||
| Extensions for concurrency(concurrency TS) | ||||
| Extensions for concurrency 2(concurrency TS v2) | ||||
| Concepts(concepts TS) | ||||
| Ranges(ranges TS) | ||||
| Reflection(reflection TS) | ||||
| Mathematical special functions(special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
| std::future extensions | ||||
experimental::future | ||||
| Latches and barriers | ||||
| Atomic smart pointers | ||||
Defined in header <experimental/future> | ||
template<class T>class future; | (1) | (concurrency TS) |
template<class T>class future<T&>; | (2) | (concurrency TS) |
template<>class future<void>; | (3) | (concurrency TS) |
The class templatestd::experimental::future extendsstd::future with the following operations:
future<future<T>>;is_ready to query whether the associated shared state is ready; andthen to attach a continuation to the future.However, there is no interoperation betweenstd::experimental::future andstd::future.
Contents |
construct afuture object(public member function)[edit] | |
| checks if the shared state is ready (public member function)[edit] | |
| attaches a continuation to a future (public member function)[edit] | |
| moves the future object (public member function)[edit] |
Note thatshare() returns astd::experimental::shared_future<T>. The behavior is otherwise identical.
| destructs the future object (public member function of std::future<T>)[edit] | |
| transfers the shared state from*this to ashared_future and returns it (public member function of std::future<T>)[edit] | |
Getting the result | |
| returns the result (public member function of std::future<T>)[edit] | |
State | |
| checks if the future has a shared state (public member function of std::future<T>)[edit] | |
| waits for the result to become available (public member function of std::future<T>)[edit] | |
| waits for the result, returns if it is not available for the specified timeout duration (public member function of std::future<T>)[edit] | |
| waits for the result, returns if it is not available until specified time point has been reached (public member function of std::future<T>)[edit] | |
| This section is incomplete Reason: no example |
(concurrency TS) | a version ofstd::shared_future enhanced with continuations and other features (class template)[edit] |