ContainerRandomAccessIterator<TValue>.Equality Operator

定義

2 つの反復子が同じオブジェクトであるかどうかを判断します。

オーバーロード

名前 説明
Equality(ContainerRandomAccessIterator<TValue>)

指定した ContainerRandomAccessIterator<TValue> オブジェクトが現在の ContainerRandomAccessIterator<TValue> オブジェクトと同じかどうかを判断します。

Equality(IInputIterator<TValue>)

指定した IInputIterator<TValue> オブジェクトが現在の ContainerRandomAccessIterator<TValue> オブジェクトと同じかどうかを判断します。

Equality(ContainerRandomAccessIterator<TValue>)

指定した ContainerRandomAccessIterator<TValue> オブジェクトが現在の ContainerRandomAccessIterator<TValue> オブジェクトと同じかどうかを判断します。

public:
 bool operator ==(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Right);
public bool operator ==(Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Right);
member this.( = ) : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> -> bool
Public Operator == (_Right As ContainerRandomAccessIterator(Of TValue)) As Boolean

パラメーター

_Right
ContainerRandomAccessIterator<TValue>

現在のContainerRandomAccessIterator<TValue> オブジェクトと比較するContainerRandomAccessIterator<TValue> オブジェクト。

返品

true 2 つの反復子が同じオブジェクトである場合。それ以外の場合は false

適用対象

Equality(IInputIterator<TValue>)

指定した IInputIterator<TValue> オブジェクトが現在の ContainerRandomAccessIterator<TValue> オブジェクトと同じかどうかを判断します。

public:
 bool operator ==(Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _Right);
public bool operator ==(Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _Right);
member this.( = ) : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
Public Operator == (_Right As IInputIterator(Of TValue)) As Boolean

パラメーター

_Right
IInputIterator<TValue>

現在のContainerRandomAccessIterator<TValue> オブジェクトと比較するIInputIterator<TValue> オブジェクト。

返品

true 2 つの反復子が同じオブジェクトである場合。それ以外の場合は false

適用対象