IHash<TKey,TValue>.upper_bound 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
尋找符合指定索引鍵之項目範圍的結尾。
public:
void ^ upper_bound(Microsoft::VisualC::StlClr::Generic::ContainerBidirectionalIterator<TValue> ^ % unnamedParam1, TKey _Keyval);
public void upper_bound (ref Microsoft.VisualC.StlClr.Generic.ContainerBidirectionalIterator<TValue> unnamedParam1, TKey _Keyval);
abstract member upper_bound : ContainerBidirectionalIterator * 'Key -> unit
Public Function upper_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::upper_bound (STL/CLR) 、 hash_multimap::upper_bound (STL/CLR ) 、 hash_set::upper_bound (STL/CLR ) 和 hash_multiset::upper_bound (STL/CLR) 。