std::ranges::adjacent_transform_view<V,F,N>::iterator<Const>::operator++,--,+=,-=
来自 cppreference.com
< cpp | ranges | adjacent transform 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 起) |
递增或递减 迭代器。
设 inner_
为底层迭代器,而 Base
为仅供说明的成员类型。
等效于
1) ++inner_; return *this;
2) auto tmp = *this; ++*this; return tmp;
3) --inner_; return *this;
4) auto tmp = *this; --*this; return tmp;
5) inner_ += n; return *this;
6) inner_ -= n; return *this;
内容 |
[编辑] 参数
n | - | 相对于当前位置的位置 |
[编辑] 返回值
1,3,5,6) *this
2,4) 在更改之前创建的 *this 的副本
[编辑] 示例
本节尚未完善 原因:没有示例 |