Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Increments the stored iterator that belongs to this move_iterator. The current element is accessed by the postincrement operator. The next element is accessed by the preincrement operator.
move_iterator& operator++();
move_iterator operator++(int);
Property Value/Return Value
The preincrement version of the operator returns *this.
The postincrement version of the operator returns a copy of *this made before the operator evaluates ++*this.
Remarks
The first (preincrement) operator increments the stored iterator. Then returns *this.
The second (postincrement) operator makes a copy of *this, evaluates ++*this. Then returns the copy.
Requirements
Header: <iterator>
Namespace: std