ContainerRandomAccessIterator<TValue>.equal_to メソッド

定義

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

オーバーロード

equal_to(ContainerRandomAccessIterator<TValue>)

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

equal_to(IInputIterator<TValue>)

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

equal_to(ContainerRandomAccessIterator<TValue>)

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

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

パラメーター

_Right
ContainerRandomAccessIterator<TValue>

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

戻り値

2 つの ContainerRandomAccessIterator<TValue> オブジェクトが同じオブジェクトである場合は true。それ以外の場合は false

適用対象

equal_to(IInputIterator<TValue>)

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

public:
 virtual bool equal_to(Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _Right);
public virtual bool equal_to (Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _Right);
abstract member equal_to : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
override this.equal_to : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
Public Overridable Function equal_to (_Right As IInputIterator(Of TValue)) As Boolean

パラメーター

_Right
IInputIterator<TValue>

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

戻り値

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

適用対象