ReverseRandomAccessIterator<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 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(ReverseRandomAccessIterator<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::ReverseRandomAccessIterator<TValue> ^ % , int );
public void operator ++ (ref Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> , int );
member this.op_Increment : * int -> unit
Public op_Increment (ByRef As ReverseRandomAccessIterator(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
Increment(ReverseRandomAccessIterator<TValue>)
Increments the reverse iterator by one element. This is the prefix version of the increment operator.
public:
void ^ operator ++(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ % unnamedParam1);
public void operator ++ (ref Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> unnamedParam1);
member this.op_Increment : ReverseRandomAccessIterator -> unit
Public op_Increment (ByRef unnamedParam1 As ReverseRandomAccessIterator(Of TValue)) As Void
Parameters
- unnamedParam1
- ReverseRandomAccessIterator<TValue>
The current iterator.