ConstReverseRandomAccessIterator<TValue>.less_than 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷目前的 Iterator 指向的項目,是否在容器中位於指定的 Iterator 所指向的項目之前。
多載
less_than(ConstReverseRandomAccessIterator<TValue>) |
判斷目前的 Iterator 指向的項目,是否在容器中位於指定的 Iterator 所指向的項目之前。 |
less_than(IRandomAccessIterator<TValue>) |
判斷目前的 Iterator 指向的項目,是否在容器中位於指定的 Iterator 所指向的項目之前。 |
less_than(ConstReverseRandomAccessIterator<TValue>)
判斷目前的 Iterator 指向的項目,是否在容器中位於指定的 Iterator 所指向的項目之前。
public:
bool less_than(Microsoft::VisualC::StlClr::Generic::ConstReverseRandomAccessIterator<TValue> ^ _Right);
public bool less_than (Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<TValue> _Right);
member this.less_than : Microsoft.VisualC.StlClr.Generic.ConstReverseRandomAccessIterator<'Value> -> bool
Public Function less_than (_Right As ConstReverseRandomAccessIterator(Of TValue)) As Boolean
參數
指向和目前 Iterator 同一個容器的有效 Iterator。
傳回
如果目前的 Iterator 所指向的項目,位於 _Right
所指向的項目之前,則為 true
,否則為 false
。
適用於
less_than(IRandomAccessIterator<TValue>)
判斷目前的 Iterator 指向的項目,是否在容器中位於指定的 Iterator 所指向的項目之前。
public:
virtual bool less_than(Microsoft::VisualC::StlClr::Generic::IRandomAccessIterator<TValue> ^ _Right);
public virtual bool less_than (Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<TValue> _Right);
abstract member less_than : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> bool
override this.less_than : Microsoft.VisualC.StlClr.Generic.IRandomAccessIterator<'Value> -> bool
Public Overridable Function less_than (_Right As IRandomAccessIterator(Of TValue)) As Boolean
參數
指向和目前 Iterator 同一個容器的有效 Iterator。
傳回
如果目前的 Iterator 所指向的項目,位於 _Right
所指向的項目之前,則為 true
,否則為 false
。