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