Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 532 Bytes

all-forward.md

File metadata and controls

22 lines (17 loc) · 532 Bytes

all-forward

  • 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

参照