ContainerRandomAccessIterator<TValue>.LessThan 运算符
定义
确定迭代器的位置是否小于另一个迭代器的位置。Determines whether the position of an iterator is less than the position of another iterator.
重载
| LessThan(ContainerRandomAccessIterator<TValue>) |
确定左侧迭代器的位置是否小于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is less than the position of the given right-side iterator. |
| LessThan(IRandomAccessIterator<TValue>) |
确定左侧迭代器的位置是否小于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is less than the position of the given right-side iterator. |
LessThan(ContainerRandomAccessIterator<TValue>)
确定左侧迭代器的位置是否小于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is less than the position of the given right-side iterator.
public:
bool operator <(Microsoft::VisualC::StlClr::Generic::ContainerRandomAccessIterator<TValue> ^ _Right);
public bool operator < (Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<TValue> _Right);
member this.( < ) : Microsoft.VisualC.StlClr.Generic.ContainerRandomAccessIterator<'Value> -> bool
Public Operator < (_Right As ContainerRandomAccessIterator(Of TValue)) As Boolean
参数
要与左侧迭代器进行比较的迭代器。The iterator to compare with the left-side iterator.
返回
如果左侧迭代器小于给定的右侧迭代器,则为 true;否则为 false。true if the left-side iterator is less than the given right-side iterator; otherwise, false.
适用于
LessThan(IRandomAccessIterator<TValue>)
确定左侧迭代器的位置是否小于给定的右侧迭代器的位置。Determines whether the position of the left-side iterator is less than the position of the given right-side iterator.
public:
bool operator <(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Right);
public bool operator < (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);
member this.( < ) : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> bool
Public Operator < (_Right As IRandomAccessIterator(Of TValue)) As Boolean
参数
要与左侧迭代器进行比较的迭代器。The iterator to compare with the left-side iterator.
返回
如果左侧迭代器小于给定的右侧迭代器,则为 true;否则为 false。true if the left-side iterator is less than the given right-side iterator; otherwise, false.