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)

适用于