- 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