namespace std::ranges {
template<bool Const, class... Views>
concept all-forward = (forward_range<maybe-const<Const, Views>> && ...);
}
概要
all-forward
は、複数のビューに対し、それらすべてが forward_range
であることを表すコンセプトである。
バージョン
言語
- C++26
namespace std::ranges {
template<bool Const, class... Views>
concept all-forward = (forward_range<maybe-const<Const, Views>> && ...);
}
all-forward
は、複数のビューに対し、それらすべてが forward_range
であることを表すコンセプトである。