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_) i = std::ranges::next(i); return *this;
2) 等同于
auto tmp = *this; ++*this; return tmp;
3) 等同于如果在调用之前 current_.front() 不可递减,则行为未定义。
for (auto& i : current_) i = std::ranges::prev(i); return *this;
4) 等同于
auto tmp = *this; --*this; return tmp;
5) 等同于如果在调用之前 current_.back() + n 行为未定义,则行为未定义。
for (auto& i : current_) i = i + n; return *this;
6) 等同于如果在调用之前 current_.front() - n 行为未定义,则行为未定义。
for (auto& i : current_) i = i - n; return *this;
内容 |
[编辑] 参数
n | - | 相对于当前位置的偏移量 |
[编辑] 返回值
1,3,5,6) *this
2,4) 在更改之前 *this 的副本。
[编辑] 示例
运行此代码
#include <cassert> #include <list> #include <ranges> #include <utility> #include <vector> 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; // overload (1) assert((*i == std::pair{1, 2})); --i; // overload (3) assert((*i == std::pair{0, 1})); i += 2; // overload (5) assert((*i == std::pair{2, 3})); i -= 2; // overload (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; // overload (1) assert((*i == std::pair{1, 2})); --i; // overload (3) assert((*i == std::pair{0, 1})); // i += 2; // Error: v is not a random_access_range; overload (5) // i -= 2; // Error: v is not a random_access_range; overload (6) } }
[编辑] 另请参阅
(C++23) |
执行迭代器算术运算 (公共成员函数) |