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>

一个迭代器,指定受控序列中的第一个元素,该元素哈希到同一存储桶 _Keyval ,并且具有等效的顺序 _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)。

适用于