move_iterator::operator++
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);
속성 값/반환 값
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.
설명
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.
요구 사항
헤더: <iterator>
네임스페이스: std