Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 920 Bytes

File metadata and controls

32 lines (24 loc) · 920 Bytes

execution-policy

  • [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

参照