ConstReverseRandomAccessIterator<TValue>.Increment Operator

Definition

Increments the reverse iterator by one element.

Overloads

Increment(Int32, Int32)

Increments the reverse iterator by one element. This is the postfix version of the increment operator.

Increment(ConstReverseRandomAccessIterator<TValue>)

Increments the reverse iterator by one element. This is the prefix version of the increment operator.

Increment(Int32, Int32)

Increments the reverse iterator by one element. This is the postfix version of the increment operator.

public:
 void ^ operator ++(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ % , int );
public void operator ++ (ref Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> , int );
member this.op_Increment :  * int -> unit
Public op_Increment (ByRef  As ConstReverseRandomAccessIterator(Of TValue),  As Integer) As Void

Parameters

A_0
Int32

Indicates that this is the postfix version of the increment operator.

Applies to

Increment(ConstReverseRandomAccessIterator<TValue>)

Increments the reverse iterator by one element. This is the prefix version of the increment operator.

public:
 void ^ operator ++(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ % unnamedParam1);
public void operator ++ (ref Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> unnamedParam1);
member this.op_Increment : ConstReverseRandomAccessIterator -> unit
Public op_Increment (ByRef unnamedParam1 As ConstReverseRandomAccessIterator(Of TValue)) As Void

Parameters

unnamedParam1
ConstReverseRandomAccessIterator<TValue>

The current iterator.

Applies to