ReverseBidirectionalIterator<TValue>.Equality 演算子

定義

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

オーバーロード

Equality(IInputIterator<TValue>)

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

Equality(ReverseBidirectionalIterator<TValue>)

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

Equality(IInputIterator<TValue>)

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

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

戻り値

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

注釈

この演算子の同等のメソッドは 次のようになります。 Object.Equals(Object)

適用対象

Equality(ReverseBidirectionalIterator<TValue>)

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

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

パラメーター

_Right
ReverseBidirectionalIterator<TValue>

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

戻り値

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

適用対象