ConstContainerRandomAccessIterator<TValue>.Addition Operator

Definition

Increments the iterator by the given number of elements.

Overloads

Addition(ConstContainerRandomAccessIterator<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(ConstContainerRandomAccessIterator<TValue>, Int32, ConstContainerRandomAccessIterator<TValue>)

Increments the iterator by the given number of elements. The integer parameter is specified on the left side of the addition operator.

Addition(ConstContainerRandomAccessIterator<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::ConstContainerRandomAccessIterator<TValue> ^ % unnamedParam1, int _Right);
public void operator + (ref Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> unnamedParam1, int _Right);
member this.( + ) : ConstContainerRandomAccessIterator * int -> unit
Public Operator + (ByRef unnamedParam1 As ConstContainerRandomAccessIterator(Of TValue), _Right As Integer) As Void

Parameters

unnamedParam1
ConstContainerRandomAccessIterator<TValue>

The current iterator.

_Right
Int32

The number of elements to increment.

Applies to

Addition(ConstContainerRandomAccessIterator<TValue>, Int32, ConstContainerRandomAccessIterator<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::ConstContainerRandomAccessIterator<TValue> ^ % unnamedParam1, int _Left, Microsoft::VisualC::StlClr::Generic::ConstContainerRandomAccessIterator<TValue> ^ _Right);
public static void operator + (ref Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> unnamedParam1, int _Left, Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<TValue> _Right);
static member ( + ) : ConstContainerRandomAccessIterator * int * Microsoft.VisualC.StlClr.Generic.ConstContainerRandomAccessIterator<'Value> -> unit
Public Shared Operator + (ByRef unnamedParam1 As ConstContainerRandomAccessIterator(Of TValue), _Left As Integer, _Right As ConstContainerRandomAccessIterator(Of TValue)) As Void

Parameters

unnamedParam1
ConstContainerRandomAccessIterator<TValue>

The iterator that the operator is to act on.

_Left
Int32

The number of elements to increment.

_Right
ConstContainerRandomAccessIterator<TValue>

The iterator to increment.

Applies to