ConstContainerBidirectionalIterator<TValue>.Equality Operator

Definition

Determines whether two iterators are the same object.

Overloads

Equality(ConstContainerBidirectionalIterator<TValue>)

Determines whether the given ConstContainerBidirectionalIterator<TValue> object is the same as the current ConstContainerBidirectionalIterator<TValue> object.

Equality(IInputIterator<TValue>)

Determines whether the given IInputIterator<TValue> object is the same as the current ConstContainerBidirectionalIterator<TValue> object.

Equality(ConstContainerBidirectionalIterator<TValue>)

Determines whether the given ConstContainerBidirectionalIterator<TValue> object is the same as 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.( = ) : Microsoft.VisualC.StlClr.Generic.ConstContainerBidirectionalIterator<'Value> -> bool
Public Operator == (_Right As ConstContainerBidirectionalIterator(Of TValue)) As Boolean

Parameters

Returns

true if the two iterators are the same object; otherwise, false.

Applies to

Equality(IInputIterator<TValue>)

Determines whether the given IInputIterator<TValue> object is the same as 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.( = ) : 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 the same object; otherwise, false.

Applies to