move_iterator::operator-=
Moves across a specified number of previous elements. This operator subtracts an offset from the stored iterator.
move_iterator& operator-=(
difference_type _Off
);
Property Value/Return Value
The operator returns *this += -_Off.
Remarks
The operator evaluates *this += -_Off. Then returns *this.
Requirements
Header: <iterator>
Namespace: std