ConstReverseBidirectionalIterator<TValue>.Increment Operator   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Increments the iterator by one element. Incrementing a reverse iterator is the same as decrementing a regular iterator.
Overloads
| Increment(ConstReverseBidirectionalIterator<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(ConstReverseBidirectionalIterator<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::ConstReverseBidirectionalIterator<TValue> ^ % unnamedParam1);public void operator ++(ref Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue> unnamedParam1);member this.op_Increment : ConstReverseBidirectionalIterator -> unitPublic op_Increment (ByRef unnamedParam1 As ConstReverseBidirectionalIterator(Of TValue)) As VoidParameters
- unnamedParam1
- ConstReverseBidirectionalIterator<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::ConstReverseBidirectionalIterator<TValue> ^ % , int );public void operator ++(ref Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue> , int );member this.op_Increment :  * int -> unitPublic op_Increment (ByRef  As ConstReverseBidirectionalIterator(Of TValue),  As Integer) As VoidParameters
- A_0
- Int32
Indicates that this is the postfix version of the increment operator.