std::ranges::constant_range
From cppreference.com
Defined in header <ranges>
|
||
template< class T > concept constant_range = |
(1) | (since C++23) |
Helper concepts |
||
template< class T > concept /*constant-iterator*/ = |
(2) | (since C++23) |
1) The
constant_range
concept is a refinement of range
for which ranges::begin
returns a constant iterator.2) The exposition-only concept /*constant-iterator*/<T> is satisfied when the result of the indirection operation of the input iterator is its const reference type which implies read-only.
Example
Run this code
#include <ranges> #include <vector> #include <string_view> #include <span> int main() { static_assert(not std::ranges::constant_range<std::vector<int>> and std::ranges::constant_range<const std::vector<int>> and std::ranges::constant_range<std::string_view> and not std::ranges::constant_range<std::span<int>> and not std::ranges::constant_range<const std::span<int>> and std::ranges::constant_range<std::span<const int>>); }