|
- std::future - cppreference. com
The class template std::future provides a mechanism to access the result of asynchronous operations: An asynchronous operation (created via std::async, std::packaged_task, or std::promise) can provide a std::future object to the creator of that asynchronous operation
- std::future lt;T gt;::valid - cppreference. com
atomic_compare_exchange_weak atomic_compare_exchange_weak_explicit atomic_compare_exchange_strong atomic_compare_exchange_strong_explicit
- SIMD library - cppreference. com
The SIMD library provides portable types for explicitly stating data-parallelism and structuring data for more efficient SIMD access
- std::future lt;T gt;::wait - cppreference. com
atomic_compare_exchange_weak atomic_compare_exchange_weak_explicit atomic_compare_exchange_strong atomic_compare_exchange_strong_explicit
- std::shared_future - cppreference. com
Unlike std::future, which is only moveable (so only one instance can refer to any particular asynchronous result), std::shared_future is copyable and multiple shared future objects may refer to the same shared state Access to the same shared state from multiple threads is safe if each thread does it through its own copy of a shared_future object
|
|
|