ReverseRandomAccessIterator<TValue>.Addition 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 the given number of elements.
Overloads
Addition(ReverseRandomAccessIterator<TValue>, Int32, ReverseRandomAccessIterator<TValue>) |
Increments the reverse iterator by the given number of elements. The integer parameter is specified on the left side of the addition operator. |
Addition(ReverseRandomAccessIterator<TValue>, Int32) |
Increments the reverse iterator by the given number of elements. The integer parameter is specified on the right side of the addition operator. |
Addition(ReverseRandomAccessIterator<TValue>, Int32, ReverseRandomAccessIterator<TValue>)
Increments the reverse iterator by the given number of elements. The integer parameter is specified on the left side of the addition operator.
public:
static void ^ operator +(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ % unnamedParam1, int _Left, Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ _Right);
public static void operator + (ref Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> unnamedParam1, int _Left, Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> _Right);
static member ( + ) : ReverseRandomAccessIterator * int * Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> -> unit
Public Shared Operator + (ByRef unnamedParam1 As ReverseRandomAccessIterator(Of TValue), _Left As Integer, _Right As ReverseRandomAccessIterator(Of TValue)) As Void
Parameters
- unnamedParam1
- ReverseRandomAccessIterator<TValue>
The current iterator.
- _Left
- Int32
The number of elements to increment.
The iterator to increment.
Applies to
Addition(ReverseRandomAccessIterator<TValue>, Int32)
Increments the reverse iterator by the given number of elements. The integer parameter is specified on the right side of the addition operator.
public:
void ^ operator +(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ % unnamedParam1, int _Right);
public void operator + (ref Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> unnamedParam1, int _Right);
member this.( + ) : ReverseRandomAccessIterator * int -> unit
Public Operator + (ByRef unnamedParam1 As ReverseRandomAccessIterator(Of TValue), _Right As Integer) As Void
Parameters
- unnamedParam1
- ReverseRandomAccessIterator<TValue>
The current iterator.
- _Right
- Int32
The number of elements to increment.