Share via


ConstContainerRandomAccessIterator<TValue>.LessThan 運算子

定義

判斷 Iterator 的位置是否小於另一個 Iterator 的位置。

多載

LessThan(ConstContainerRandomAccessIterator<TValue>)

判斷左側 Iterator 的位置是否小於指定之右側 Iterator 的位置。

LessThan(IRandomAccessIterator<TValue>)

判斷左側 Iterator 的位置是否小於指定之右側 Iterator 的位置。

LessThan(ConstContainerRandomAccessIterator<TValue>)

判斷左側 Iterator 的位置是否小於指定之右側 Iterator 的位置。

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

參數

_Right
ConstContainerRandomAccessIterator<TValue>

要與左側 Iterator 比較的 Iterator。

傳回

如果左側的 Iterator 小於指定的右側 Iterator,則為 true,否則為 false

適用於

LessThan(IRandomAccessIterator<TValue>)

判斷左側 Iterator 的位置是否小於指定之右側 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

參數

_Right
IRandomAccessIterator<TValue>

要與左側 Iterator 比較的 Iterator。

傳回

如果左側的 Iterator 小於指定的右側 Iterator,則為 true,否則為 false

適用於