Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 572 Bytes

File metadata and controls

23 lines (18 loc) · 572 Bytes

all-forward

  • [meta exposition-only]
  • ranges[meta header]
  • concept[meta id-type]
  • cpp26[meta cpp]
namespace std::ranges {
  template<bool Const, class... Views>
  concept all-forward = (forward_range<maybe-const<Const, Views>> && ...);
}

概要

all-forward は、複数のビューに対し、それらすべてが forward_range であることを表す説明専用のコンセプトである。

バージョン

言語

  • C++26

参照