operator+(std::move_iterator)
提供: cppreference.com
< cpp | iterator | move iterator
template< class Iter > move_iterator<Iter> |
(C++17未満) | |
template< class Iter > constexpr move_iterator<Iter> |
(C++17以上) | |
n
回インクリメントされたイテレータ it
を返します。
目次 |
[編集] 引数
n | - | イテレータをインクリメントする回数 |
it | - | インクリメントするイテレータアダプタ |
[編集] 戻り値
インクリメントされたイテレータ、すなわち move_iterator<Iter>(it.base() + n)。
[編集] 例
This section is incomplete Reason: no example |
[編集] 関連項目
イテレータをインクリメントもしくはデクリメントします (パブリックメンバ関数) |