std::move_iterator<Iter>::operator++,+,+=,--,-,-=
来自 cppreference.cn
< cpp | iterator | move iterator
move_iterator& operator++(); |
(1) | (constexpr 从 C++17 起) |
move_iterator& operator--(); |
(2) | (constexpr 从 C++17 起) |
(3) | ||
move_iterator operator++( int ); |
(constexpr 从 C++17 起) (直到 C++20) |
|
constexpr auto operator++( int ); |
(从 C++20 起) | |
move_iterator operator--( int ); |
(4) | (constexpr 从 C++17 起) |
move_iterator operator+( difference_type n ) const; |
(5) | (constexpr 从 C++17 起) |
move_iterator operator-( difference_type n ) const; |
(6) | (constexpr 从 C++17 起) |
move_iterator& operator+=( difference_type n ); |
(7) | (constexpr 从 C++17 起) |
move_iterator& operator-=( difference_type n ); |
(8) | (constexpr 从 C++17 起) |
递增或递减底层迭代器。
重载 | 等价于 | ||||
---|---|---|---|---|---|
(1) | ++current ; return *this;
| ||||
(2) | --current ; return *this;
| ||||
(3) |
| ||||
(4) | move_iterator tmp = *this; --current ; return tmp;
| ||||
(5) | return move_iterator(current + n);
| ||||
(6) | return move_iterator(current - n);
| ||||
(7) | current += n; return *this;
| ||||
(8) | current -= n; return *this;
|
目录 |
[编辑] 参数
n | - | 相对于当前位置的位置 |
[编辑] 返回值
如上所述。
[编辑] 示例
本节尚不完整 原因:没有示例 |
[编辑] 参见
(C++11) |
推进迭代器 (函数模板) |
(C++11) |
计算两个迭代器适配器之间的距离 (函数模板) |