- [meta exposition-only]
- execution[meta header]
- concept[meta id-type]
- std[meta namespace]
- cpp26[meta cpp]
namespace std {
template<class T>
concept execution-policy = is_execution_policy_v<remove_cvref_t<T>>;
}- is_execution_policy_v[link is_execution_policy.md]
- remove_cvref_t[link /reference/type_traits/remove_cvref.md]
execution-policyは、型Tが実行ポリシー型であることを表す説明専用のコンセプトである。
このコンセプトは、並列Rangeアルゴリズムのテンプレートパラメータ制約として使用される。
このコンセプトに合致する型は、以下のページを参照:
- C++26