std::ranges::adjacent_view<V,N>::iterator<Const>::operator++,--,+=,-=
来自cppreference.com
< cpp | ranges | adjacent view | iterator
constexpr /*iterator*/& operator++(); |
(1) | (C++23 起) |
constexpr /*iterator*/ operator++( int ); |
(2) | (C++23 起) |
constexpr /*iterator*/& operator--() requires ranges::bidirectional_range<Base>; |
(3) | (C++23 起) |
constexpr /*iterator*/ operator--( int ) requires ranges::bidirectional_range<Base>; |
(4) | (C++23 起) |
constexpr /*iterator*/& operator+=( difference_type n ) requires ranges::random_access_range<Base>; |
(5) | (C++23 起) |
constexpr /*iterator*/& operator-=( difference_type n ) requires ranges::random_access_range<Base>; |
(6) | (C++23 起) |
递增或递减迭代器。
令 current_
为底层迭代器数组。
1) 等价于:
如果在调用之前,current_.back() 不可递增,则行为未定义。
for (auto& i : current_) std::ranges::next(i); return *this;
2) 等价于:
auto tmp = *this; ++*this; return tmp;
3) 等价于:
如果调用之前,current_.front() 不可递增,则行为未定义。
for (auto& i : current_) std::ranges::prev(i); return *this;
4) 等价于:
auto tmp = *this; --*this; return tmp;
5) 等价于:
如果调用之前,current_.back() + n 无良定义,则行为未定义。
for (auto& i : current_) i += n; return *this;
6) 等价于:
如果调用之前,current_.front() - n 无良定义,则行为未定义。
for (auto& i : current_) i -= n; return *this;
参数
n | - | 相对于当前位置的偏移量 |
返回值
1,3,5,6) *this
2,4) *this 被修改前的拷贝。
示例
运行此代码
#include <cassert> #include <list> #include <ranges> #include <utility> #include <vector> [[nodiscard]] bool operator== (std::pair<int&, int&> x, std::pair<int, int> y) { return x.first == y.first and x.second == y.second; } int main() { { auto v = std::vector{0, 1, 2, 3, 4, 5}; auto i = (v | std::views::pairwise).begin(); assert((*i == std::pair{0, 1})); ++i; // 重载 (1) assert((*i == std::pair{1, 2})); --i; // 重载 (3) assert((*i == std::pair{0, 1})); i += 2; // 重载 (5) assert((*i == std::pair{2, 3})); i -= 2; // 重载 (6) assert((*i == std::pair{0, 1})); } { auto v = std::list{0, 1, 2, 3, 4, 5}; auto i = (v | std::views::pairwise).begin(); assert((*i == std::pair{0, 1})); ++i; // 重载 (1) assert((*i == std::pair{1, 2})); --i; // 重载 (3) assert((*i == std::pair{0, 1})); // i += 2; // Error: v is not a random_access_range; 重载 (5) // i -= 2; // Error: v is not a random_access_range; 重载 (6) } }
参阅
(C++23) |
进行迭代器算数 (公开成员函数) |