std::ranges::adjacent_view<V,N>::iterator
来自 cppreference.com
< cpp | ranges | adjacent view
template< bool Const > class /*iterator*/ |
(自 C++23 起) (仅供展示*) |
|
adjacent_view::begin
的返回值类型,以及当底层视图 V
为 common_range
时 adjacent_view::end
的返回值类型。
类型 /*iterator*/<true> 由 const 限定的重载返回。类型 /*iterator*/<false> 由非 const 限定的重载返回。
内容 |
[编辑] 成员类型
成员类型 | 定义 |
Base (私有) |
const V 如果 Const 为 true,否则为 V. (仅供展示成员类型*) |
iterator_category
|
std::input_iterator_tag |
iterator_concept
|
|
value_type
|
std::tuple</*REPEAT*/(ranges::range_value_t<Base>, N)...>; |
difference_type
|
ranges::range_difference_t<Base> |
[编辑] 数据成员
成员对象 | 定义 |
current_ (私有) |
std::array<ranges::iterator_t<Base>, N>. (仅供展示成员对象*) |
[编辑] 成员函数
构造一个迭代器 (公共成员函数) | |
访问元素 (公共成员函数) | |
通过索引访问元素 (公共成员函数) | |
前进或后退底层迭代器 (公共成员函数) |
[编辑] 非成员函数
比较底层迭代器 (函数) | |
(C++23) |
执行迭代器算术运算 (函数) |
(C++23) |
将对底层迭代器的解引用结果强制转换为其关联的右值引用类型 (函数) |
(C++23) |
交换两个底层迭代器指向的对象 (函数) |
[edit] 示例
运行此代码
#include <cassert> #include <concepts> #include <list> #include <ranges> #include <tuple> #include <utility> #include <vector> int main() { auto v = std::vector{0, 1, 2, 3, 4, 5}; auto i = (v | std::views::adjacent<3>).begin(); using I = decltype(i); static_assert(std::same_as<I::value_type, std::tuple<int, int, int>>); static_assert(std::same_as<I::iterator_concept, std::random_access_iterator_tag>); // some of available operators: ++i; i++; --i; i--; i += 2; i -= 2; assert(i[2] == std::tuple(2, 3, 4)); using DI = decltype(*i); static_assert(std::same_as<DI, std::tuple<int&, int&, int&>>); std::get<1>(*i) = 42; // modifies v[1] via iterator i assert(v[1] == 42); auto l = std::list{0, 1, 2, 3, 4, 5}; auto j = (l | std::views::adjacent<3>).begin(); using J = decltype(j); static_assert(std::same_as<J::value_type, std::tuple<int, int, int>>); static_assert(std::same_as<J::iterator_concept, std::bidirectional_iterator_tag>); ++j; --j; j++; j--; // some of available operators // j += 2; j -= 2; // error: these operator are not available // std::ignore() = j[1]; // for bidirectional iterator }
[edit] 参考文献
- C++23 标准 (ISO/IEC 14882:2024)
- 26.7.25.3 类模板 adjacent_view::iterator [range.adjacent.iterator]