std::ranges:: random_access_range
From cppreference.com
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | ||||||||||||||||||||||||||||||||||
|
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
|
Defined in header
<ranges>
|
||
template
<
class
T
>
concept random_access_range
=
|
(since C++20) | |
The
random_access_range
concept is a refinement of
range
for which
ranges::begin
returns a model of
random_access_iterator
.
Example
Run this code
#include <array> #include <deque> #include <list> #include <ranges> #include <set> #include <valarray> #include <vector> template<typename T> concept RAR = std::ranges::random_access_range<T>; int main() { int a[4]; static_assert( RAR<std::vector<int>> and RAR<std::vector<bool>> and RAR<std::deque<int>> and RAR<std::valarray<int>> and RAR<decltype(a)> and not RAR<std::list<int>> and not RAR<std::set<int>> and RAR<std::array<std::list<int>,42>> ); }
See also
(C++20)
|
specifies that a range knows its size in constant time
(concept) |
(C++20)
|
specifies a range whose iterator type satisfies
contiguous_iterator
(concept) |
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/random_access_range&oldid=172808
"