concurrent_unordered_set::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
    検索するキー値。

戻り値

最初の要素が最初と 2 番目の要素への反復子である ペア は範囲の末尾を指す反復子です。

解説

最後の反復子と同時に挿入が追加キーを挿入できる開始後の反復子との前にできます。

必要条件

ヘッダー: internal_concurrent_hash.h

名前空間: の同時実行

参照

関連項目

concurrent_unordered_set クラス