IHash<TKey,TValue>.lower_bound 方法

定義

尋找符合指定索引鍵之項目範圍的開頭。

public:
 void ^ lower_bound(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ % unnamedParam1, TKey _Keyval);
public void lower_bound (ref Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> unnamedParam1, TKey _Keyval);
abstract member lower_bound : ContainerBidirectionalIterator * 'Key -> unit
Public Function lower_bound (ByRef unnamedParam1 As ContainerBidirectionalIterator(Of TValue), _Keyval As TKey) As Void

參數

unnamedParam1
ContainerBidirectionalIterator<TValue>

Iterator,指定受控制序列中第一個雜湊至與 _Keyval 相同 Bucket 的項目,以及與 _Keyval 相等排序的項目。 如果沒有此類項目存在,便會傳回 end(ContainerBidirectionalIterator<TValue>)

_Keyval
TKey

要搜尋的索引鍵值。

備註

如需詳細資訊,請參閱 hash_map::lower_bound (STL/CLR) hash_multimap::lower_bound (STL/CLR) hash_set::lower_bound (STL/CLR) hash_multiset::lower_bound (STL/CLR)

適用於