concurrent_unordered_map::equal_range Method
尋找符合指定之索引鍵的範圍。 這個函式是並行安全的。
std::pair<iterator, iterator> equal_range(
const key_type& _Keyval);
std::pair<const_iterator, const_iterator> equal_range(
const key_type& _Keyval
) const;
參數
- _Keyval
要搜尋的索引鍵值。
傳回值
第一個項目是 Iterator 是啟動第二個項目是 對 並將範圍的結尾。
備註
若要同時插入會導致其他索引鍵插入,開始和 Iterator 在結尾 Iterator 之前是可能的。
需求
標題: internal_concurrent_hash.h
命名空間: concurrency