다음을 통해 공유


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

See Also

Reference

move_iterator Class

<iterator>

Standard Template Library

Other Resources

move_iterator Members

<iterator> Members