ConstContainerBidirectionalIterator<TValue>.Inequality Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether two iterators are not the same object.
Overloads
Inequality(ConstContainerBidirectionalIterator<TValue>) |
Determines whether the given ConstContainerBidirectionalIterator<TValue> object differs from the current ConstContainerBidirectionalIterator<TValue> object. |
Inequality(IInputIterator<TValue>) |
Determines whether the given IInputIterator<TValue> object differs from the current ConstContainerBidirectionalIterator<TValue> object. |
Inequality(ConstContainerBidirectionalIterator<TValue>)
Determines whether the given ConstContainerBidirectionalIterator<TValue> object differs from the current ConstContainerBidirectionalIterator<TValue> object.
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
Parameters
The ConstContainerBidirectionalIterator<TValue> object to compare with the current ConstContainerBidirectionalIterator<TValue> object.
Returns
true
if the two iterators are different objects; otherwise, false
.
Applies to
Inequality(IInputIterator<TValue>)
Determines whether the given IInputIterator<TValue> object differs from the current ConstContainerBidirectionalIterator<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 ConstContainerBidirectionalIterator<TValue> object.
Returns
true
if the two iterators are different objects; otherwise, false
.