move_iterator::operator+=
Adds an offset to the stored iterator, so that the stored iterator points to the element at the new current location. The operator then moves the new current element.
move_iterator& operator+=(
difference_type _Off
);
매개 변수
- _Off
An offset to add to the current position to determine the new current position.
반환 값
Returns the new current element.
설명
The operator adds _Off to the stored iterator. Then returns *this.
요구 사항
헤더: <iterator>
네임스페이스: std