| 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::make_ready_future | ||||
| Latches and barriers | ||||
| Atomic smart pointers | ||||
Defined in header <experimental/future> | ||
template<class T> future<V/* see below */> make_ready_future( T&& value); | (1) | (concurrency TS) |
future<void> make_ready_future(); | (2) | (concurrency TS) |
V isX&, otherwise,V isstd::decay_t<T>.V that is immediately ready, with the result constructed fromstd::forward<T>(value), then returns astd::experimental::future associated with that shared state.Astd::experimental::future associated with the shared state that is created.
(concurrency TS) | produces a future that is ready immediately and holds the given exception (function template)[edit] |