| メンバー | 説明 |
|---|---|
| explicit concurrent_unordered_set (size_type n = implementation-defined, const hasher& hf = hasher(),const key_equal& eql = key_equal(), const allocator_type& a = allocator_type()) |
n バケットのテーブルを構築します。 |
| template <typename InputIterator> concurrent_unordered_set (InputIterator first, InputIterator last, size_type n = <implementation-defined>, const hasher& hf = hasher(), const key_equal& eql = key_equal(), const allocator_type& a = allocator_type()) |
value_type(*i) で初期化された n バケットのテーブルを構築します。ここで、i は半開区間 [first,last) です。 |
| concurrent_unordered_set(const unordered_set& m) |
セット m のコピーを構築します。 |
| concurrent_unordered_set(const Alloc& a) |
アロケーター a を使用して空のセットを構築します。 |
| concurrent_unordered_set(const unordered_set&, const Alloc& a) |
アロケーター a を使用してセット m のコピーを構築します。 |
| ~concurrent_unordered_set() |
セットを破棄します。 |
| concurrent_ unordered_set& operator=(const concurrent_unordered_set& m); |
*this をセット m のコピーに設定します。 |
| allocator_type get_allocator() const; |
*this に関連付けられているアロケーターのコピーを取得します。 |