ContainerRandomAccessIterator<TValue>.Inequality 演算子

定義

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

オーバーロード

Inequality(IInputIterator<TValue>)

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

Inequality(ContainerRandomAccessIterator<TValue>)

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

Inequality(IInputIterator<TValue>)

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

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

戻り値

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

適用対象

Inequality(ContainerRandomAccessIterator<TValue>)

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

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

パラメーター

_Right
ContainerRandomAccessIterator<TValue>

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

戻り値

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

適用対象