Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/iterator/next"

From cppreference.com
< cpp‎ | iterator
(+type reqs)
(fmt)
Line 5: Line 5:
 
{{ddcl list item | notes={{mark since c++11}} |
 
{{ddcl list item | notes={{mark since c++11}} |
 
template< class ForwardIt >
 
template< class ForwardIt >
ForwardIt next( ForwardIt it, typename std::iterator_traits<ForwardIt>::difference_type n {{=}} 1 );
+
ForwardIt next( ForwardIt it,  
 +
                typename std::iterator_traits<ForwardIt>::difference_type n {{=}} 1 );
 
}}
 
}}
 
{{ddcl list end}}
 
{{ddcl list end}}

Revision as of 11:32, 7 August 2012

 
 
Iterator library
Iterator concepts
Iterator primitives
Algorithm concepts and utilities
Indirect callable concepts
Common algorithm requirements
(C++20)
(C++20)
(C++20)
Utilities
(C++20)
Iterator adaptors
Range access
(C++11)(C++14)
(C++14)(C++14)  
(C++11)(C++14)
(C++14)(C++14)  
(C++17)(C++20)
(C++17)
(C++17)
 

Template:ddcl list begin <tr class="t-dsc-header">

<td>
Defined in header <iterator>
</td>

<td></td> <td></td> </tr> <tr class="t-dcl ">

<td >
template< class ForwardIt >

ForwardIt next( ForwardIt it,

                typename std::iterator_traits<ForwardIt>::difference_type n = 1 );
</td>

<td class="t-dcl-nopad"> </td> <td > (since C++11) </td> </tr> Template:ddcl list end

Return the nth successor of iterator it.

Contents

Parameters

it - an iterater'
n - number of elements to advance
Type requirements
-
ForwardIt must meet the requirements of LegacyForwardIterator.

Return value

The nth successor of iterator it.

Possible implementation

template<class ForwardIt>
ForwardIt next(ForwardIt it, typename std::iterator_traits<ForwardIt>::difference_type n = 1)
{
    std::advance(it, n);
    return it;
}

Example

#include <iostream>
#include <iterator>
#include <vector>
 
int main() 
{
    std::vector<int> v{ 3, 1, 4 };
 
    auto it = v.begin();
 
    auto nx = std::next(it, 2);
 
    std::cout << *it << ' ' << *nx << '\n';
}

Output:

3 4

See also

Template:cpp/iterator/dcl list prevTemplate:cpp/iterator/dcl list advance