ContainerRandomAccessIterator<TValue>.Addition 演算子

定義

指定の要素数だけ反復子をインクリメントします。

オーバーロード

Addition(ContainerRandomAccessIterator<TValue>, Int32)

指定の要素数だけ反復子をインクリメントします。 加算演算子の右辺には整数のパラメーターを指定します。

Addition(ContainerRandomAccessIterator<TValue>, Int32, ContainerRandomAccessIterator<TValue>)

指定の要素数だけ反復子をインクリメントします。 加算演算子の左辺には整数のパラメーターを指定します。

Addition(ContainerRandomAccessIterator<TValue>, Int32)

指定の要素数だけ反復子をインクリメントします。 加算演算子の右辺には整数のパラメーターを指定します。

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

パラメーター

unnamedParam1
ContainerRandomAccessIterator<TValue>

現在の反復子。

_Right
Int32

インクリメントする要素の数。

適用対象

Addition(ContainerRandomAccessIterator<TValue>, Int32, ContainerRandomAccessIterator<TValue>)

指定の要素数だけ反復子をインクリメントします。 加算演算子の左辺には整数のパラメーターを指定します。

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

パラメーター

unnamedParam1
ContainerRandomAccessIterator<TValue>

現在の反復子。

_Left
Int32

インクリメントする要素の数。

_Right
ContainerRandomAccessIterator<TValue>

インクリメントする反復子。

適用対象