ConstReverseRandomAccessIterator<TValue>.LessThan 运算符

定义

确定左侧迭代器的位置是否小于给定的右侧迭代器的位置。

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

参数

_Right
ConstReverseRandomAccessIterator<TValue>

要与左侧迭代器进行比较的迭代器。

返回

如果左侧迭代器小于给定的右侧迭代器,则为 true;否则为 false

适用于