ReverseBidirectionalIterator<TValue>.Inequality Operator

定義

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

オーバーロード

名前 説明
Inequality(IInputIterator<TValue>)

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

Inequality(ReverseBidirectionalIterator<TValue>)

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

Inequality(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.op_Inequality : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
Public Operator != (_Right As IInputIterator(Of TValue)) As Boolean

パラメーター

_Right
IInputIterator<TValue>

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

返品

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

適用対象

Inequality(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.op_Inequality : Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<'Value> -> bool
Public Operator != (_Right As ReverseBidirectionalIterator(Of TValue)) As Boolean

パラメーター

_Right
ReverseBidirectionalIterator<TValue>

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

返品

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

適用対象