operator+(std::move_iterator)
来自 cppreference.com
< cpp | iterator | move iterator
定义在头文件 <iterator> 中 |
||
template< class Iter > move_iterator<Iter> |
(自 C++11 起) (直到 C++17) |
|
template< class Iter > constexpr move_iterator<Iter> |
(自 C++17 起) | |
此重载仅在 it.base() + n 格式良好且类型为 |
(自 C++20 起) |
内容 |
[编辑] 参数
n | - | 要增加迭代器的位数 |
it | - | 要增加的迭代器适配器 |
[编辑] 返回值
增加的迭代器,即 move_iterator<Iter>(it.base() + n).
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
增加或减少迭代器 (公共成员函数) | |
(C++11) |
计算两个迭代器适配器之间的距离 (函数模板) |