ContainerRandomAccessIterator<TValue>.Inequality Operator

Definition

Determines whether two iterators are not the same object.

Overloads

Inequality(IInputIterator<TValue>)

Determines whether the given IInputIterator<TValue> object differs from the current ContainerRandomAccessIterator<TValue> object.

Inequality(ContainerRandomAccessIterator<TValue>)

Determines whether the given ContainerRandomAccessIterator<TValue> object differs from the current ContainerRandomAccessIterator<TValue> object.

Inequality(IInputIterator<TValue>)

Determines whether the given IInputIterator<TValue> object differs from the current ContainerRandomAccessIterator<TValue> object.

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

Parameters

_Right
IInputIterator<TValue>

The IInputIterator<TValue> object to compare with the current ContainerRandomAccessIterator<TValue> object.

Returns

true if the two iterators are different objects; otherwise, false.

Applies to

Inequality(ContainerRandomAccessIterator<TValue>)

Determines whether the given ContainerRandomAccessIterator<TValue> object differs from the current ContainerRandomAccessIterator<TValue> object.

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

Parameters

Returns

true if the two iterators are different objects; otherwise, false.

Applies to