ReverseBidirectionalIterator<TValue>.Increment Operator

Definition

Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator.

Overloads

Increment(ReverseBidirectionalIterator<TValue>)

Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator. This is the prefix version of the increment operator.

Increment(Int32, Int32)

Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator. This is the postfix version of the increment operator.

Increment(ReverseBidirectionalIterator<TValue>)

Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator. This is the prefix version of the increment operator.

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

Parameters

unnamedParam1
ReverseBidirectionalIterator<TValue>

The current iterator.

Applies to

Increment(Int32, Int32)

Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator. This is the postfix version of the increment operator.

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

Parameters

A_0
Int32

An unused parameter that indicates this is the postfix version of the operator.

Applies to