ReverseBidirectionalIterator<TValue>.equal_to メソッド

定義

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

オーバーロード

equal_to(IInputIterator<TValue>)

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

equal_to(ReverseBidirectionalIterator<TValue>)

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

equal_to(IInputIterator<TValue>)

指定の IInputIterator<TValue> オブジェクトが現在の ReverseBidirectionalIterator<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>

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

戻り値

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

適用対象

equal_to(ReverseBidirectionalIterator<TValue>)

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

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

パラメーター

_Right
ReverseBidirectionalIterator<TValue>

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

戻り値

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

適用対象