execution-policy
From cppreference.com
template< class T >
concept /*execution-policy*/ = std::is_execution_policy_v<std::remove_cvref_t<T>>;
|
(since C++26) (exposition only*) |
|
The exposition-only concept execution-policy is used by parallel range algorithms to constrain the execution policy template parameter.
See also
(C++17) |
test whether a class represents an execution policy (class template) |