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