ReverseRandomAccessIterator<TValue>.equal_to Method   
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
| equal_to(ReverseRandomAccessIterator<TValue>) | Determines whether the given ReverseRandomAccessIterator<TValue> object is the same as the current ReverseRandomAccessIterator<TValue> object. | 
| equal_to(IInputIterator<TValue>) | Determines whether the given IInputIterator<TValue> object is the same as the current ReverseRandomAccessIterator<TValue> object. | 
equal_to(ReverseRandomAccessIterator<TValue>)
Determines whether the given ReverseRandomAccessIterator<TValue> object is the same as the current ReverseRandomAccessIterator<TValue> object.
public:
 bool equal_to(Microsoft::VisualC::StlClr::Generic::ReverseRandomAccessIterator<TValue> ^ _Right);public bool equal_to(Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<TValue> _Right);member this.equal_to : Microsoft.VisualC.StlClr.Generic.ReverseRandomAccessIterator<'Value> -> boolPublic Function equal_to (_Right As ReverseRandomAccessIterator(Of TValue)) As BooleanParameters
The ReverseRandomAccessIterator<TValue> object to compare with the current ReverseRandomAccessIterator<TValue> object.
Returns
true if the two ReverseRandomAccessIterator<TValue> objects are the same object; otherwise, false.
Applies to
equal_to(IInputIterator<TValue>)
Determines whether the given IInputIterator<TValue> object is the same as the current ReverseRandomAccessIterator<TValue> object.
public:
 virtual bool equal_to(Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _Right);public virtual bool equal_to(Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _Right);abstract member equal_to : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
override this.equal_to : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> boolPublic Overridable Function equal_to (_Right As IInputIterator(Of TValue)) As BooleanParameters
- _Right
- IInputIterator<TValue>
The IInputIterator<TValue> object to compare with the current ReverseRandomAccessIterator<TValue> object.
Returns
true if the two iterators are the same object; otherwise, false.