ContainerRandomAccessIterator<TValue>.Addition Operator

Definition

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 -> unit
Public Operator + (ByRef unnamedParam1 As ContainerRandomAccessIterator(Of TValue), _Right As Integer) As Void

Parameters

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> -> unit
Public Shared Operator + (ByRef unnamedParam1 As ContainerRandomAccessIterator(Of TValue), _Left As Integer, _Right As ContainerRandomAccessIterator(Of TValue)) As Void

Parameters

unnamedParam1
ContainerRandomAccessIterator<TValue>

The current iterator.

_Left
Int32

The number of elements to increment.

_Right
ContainerRandomAccessIterator<TValue>

The iterator to increment.

Applies to