ConstReverseRandomAccessIterator<TValue>.equal_to 方法

定义

确定两个迭代器是否为同一对象。

重载

equal_to(IInputIterator<TValue>)

确定给定 IInputIterator<TValue> 对象是否与当前 ConstReverseRandomAccessIterator<TValue> 对象相同。

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> -> bool
Public Overridable Function equal_to (_Right As IInputIterator(Of TValue)) As Boolean

参数

_Right
IInputIterator<TValue>

IInputIterator<TValue> 与当前 ConstReverseRandomAccessIterator<TValue> 对象进行比较的对象。

返回

true 如果两个迭代器是同一对象,则为否则,为 false.

适用于

equal_to(ConstReverseRandomAccessIterator<TValue>)

确定给定 ConstReverseRandomAccessIterator<TValue> 对象是否与当前 ConstReverseRandomAccessIterator<TValue> 对象相同。

public:
 bool equal_to(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ _Right);
public bool equal_to(Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> _Right);
member this.equal_to : Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> -> bool
Public Function equal_to (_Right As ConstReverseRandomAccessIterator(Of TValue)) As Boolean

参数

返回

true 如果两 ConstReverseRandomAccessIterator<TValue> 个对象是同一个对象,则为 ;否则为 false

适用于