ConstContainerBidirectionalIterator<TValue>.Inequality 演算子

定義

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

オーバーロード

Inequality(ConstContainerBidirectionalIterator<TValue>)

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

Inequality(IInputIterator<TValue>)

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

Inequality(ConstContainerBidirectionalIterator<TValue>)

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

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

パラメーター

戻り値

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

適用対象

Inequality(IInputIterator<TValue>)

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

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

戻り値

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

適用対象