On this page
std::ranges::contiguous_range
Defined in header <ranges> |
||
---|---|---|
|
(since C++20) |
The contiguous_range
concept is a refinement of range
for which ranges::begin
returns a model of contiguous_iterator
and the customization point ranges::data
is usable.
Semantic requirements
T
models contiguous_range
only if given an expression e
such that decltype((e))
is T&
, std::to_address(ranges::begin(e)) == ranges::data(e)
.
Example
#include <array>
#include <deque>
#include <list>
#include <ranges>
#include <set>
#include <valarray>
#include <vector>
template<typename T> concept CR = std::ranges::contiguous_range<T>;
int main()
{
int a[4];
static_assert(
CR<std::vector<int>> and
not CR<std::vector<bool>> and
not CR<std::deque<int>> and
CR<std::valarray<int>> and
CR<decltype(a)> and
not CR<std::list<int>> and
not CR<std::set<int>> and
CR<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 random_access_iterator (concept) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/contiguous_range