ConstReverseBidirectionalIterator<TValue>.Equality 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 the same object.
Overloads
Equality(ConstReverseBidirectionalIterator<TValue>) |
Determines whether the given ConstReverseBidirectionalIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object. |
Equality(IInputIterator<TValue>) |
Determines whether the given IInputIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object. |
Equality(ConstReverseBidirectionalIterator<TValue>)
Determines whether the given ConstReverseBidirectionalIterator<TValue> object is the same as the current ConstReverseBidirectionalIterator<TValue> object.
public:
bool operator ==(Microsoft::VisualC::StlClr::Generic::ConstReverseBidirectionalIterator<TValue> ^ _Right);
public bool operator == (Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<TValue> _Right);
member this.( = ) : Microsoft.VisualC.StlClr.Generic.ConstReverseBidirectionalIterator<'Value> -> bool
Public Operator == (_Right As ConstReverseBidirectionalIterator(Of TValue)) As Boolean
Parameters
The ConstReverseBidirectionalIterator<TValue> object to compare with the current ConstReverseBidirectionalIterator<TValue> object.
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 ConstReverseBidirectionalIterator<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 ConstReverseBidirectionalIterator<TValue> object.
Returns
true
if the two iterators are the same object; otherwise, false
.