operator+(std::move_iterator)
From cppreference.com
< cpp | iterator | move iterator
template< class Iterator >
move_iterator<Iterator> |
||
Returns the iterator it
incremented by n
.
Contents |
[edit] Parameters
n | - | the number of positions to increment the iterator |
it | - | the iterator adaptor to increment |
[edit] Return value
The incremented iterator, that is move_iterator<Iterator>(x.current + n)
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
advances or decrements the iterator (public member function) |