operator+(std::move_iterator)
From cppreference.com
< cpp | iterator | move iterator
| Defined in header <iterator>
|
||
| template< class Iter > move_iterator<Iter> |
(since C++11) (until C++17) |
|
| template< class Iter > constexpr move_iterator<Iter> |
(since C++17) | |
it incremented by n.|
This overload participates in overload resolution only if it.base() + n is well-formed and has type |
(since C++20) |
Parameters
| n | - | the number of positions to increment the iterator |
| it | - | the iterator adaptor to increment |
Return value
The incremented iterator, that is move_iterator<Iter>(it.base() + n)
Example
| This section is incomplete Reason: no example |
See also
| advances or decrements the iterator (public member function) | |
| (C++11) |
computes the distance between two iterator adaptors (function template) |