]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/tr1/unordered_set.h
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / include / tr1 / unordered_set.h
CommitLineData
ab65a4c7 1// TR1 unordered_set implementation -*- C++ -*-
e133ace8 2
8d9254fc 3// Copyright (C) 2010-2020 Free Software Foundation, Inc.
e133ace8
PC
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
e133ace8
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
748086b7
JJ
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
e133ace8 19
748086b7
JJ
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
e133ace8 24
ab65a4c7 25/** @file tr1/unordered_set.h
e133ace8 26 * This is an internal header file, included by other library headers.
f910786b 27 * Do not attempt to use it directly. @headername{tr1/unordered_set}
e133ace8
PC
28 */
29
12ffa228 30namespace std _GLIBCXX_VISIBILITY(default)
f910786b 31{
12ffa228
BK
32_GLIBCXX_BEGIN_NAMESPACE_VERSION
33
4a15d842
FD
34namespace tr1
35{
12ffa228 36 // NB: When we get typedef templates these class definitions
e133ace8
PC
37 // will be unnecessary.
38 template<class _Value,
39 class _Hash = hash<_Value>,
40 class _Pred = std::equal_to<_Value>,
41 class _Alloc = std::allocator<_Value>,
42 bool __cache_hash_code = false>
43 class __unordered_set
44 : public _Hashtable<_Value, _Value, _Alloc,
45 std::_Identity<_Value>, _Pred,
46 _Hash, __detail::_Mod_range_hashing,
47 __detail::_Default_ranged_hash,
48 __detail::_Prime_rehash_policy,
49 __cache_hash_code, true, true>
50 {
51 typedef _Hashtable<_Value, _Value, _Alloc,
52 std::_Identity<_Value>, _Pred,
53 _Hash, __detail::_Mod_range_hashing,
54 __detail::_Default_ranged_hash,
55 __detail::_Prime_rehash_policy,
56 __cache_hash_code, true, true>
f910786b 57 _Base;
e133ace8
PC
58
59 public:
60 typedef typename _Base::size_type size_type;
61 typedef typename _Base::hasher hasher;
62 typedef typename _Base::key_equal key_equal;
63 typedef typename _Base::allocator_type allocator_type;
f910786b 64
e133ace8
PC
65 explicit
66 __unordered_set(size_type __n = 10,
67 const hasher& __hf = hasher(),
68 const key_equal& __eql = key_equal(),
69 const allocator_type& __a = allocator_type())
70 : _Base(__n, __hf, __detail::_Mod_range_hashing(),
71 __detail::_Default_ranged_hash(), __eql,
72 std::_Identity<_Value>(), __a)
73 { }
74
75 template<typename _InputIterator>
f910786b 76 __unordered_set(_InputIterator __f, _InputIterator __l,
e133ace8 77 size_type __n = 10,
f910786b
BK
78 const hasher& __hf = hasher(),
79 const key_equal& __eql = key_equal(),
e133ace8
PC
80 const allocator_type& __a = allocator_type())
81 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
82 __detail::_Default_ranged_hash(), __eql,
83 std::_Identity<_Value>(), __a)
f910786b 84 { }
e133ace8
PC
85 };
86
87 template<class _Value,
88 class _Hash = hash<_Value>,
89 class _Pred = std::equal_to<_Value>,
90 class _Alloc = std::allocator<_Value>,
91 bool __cache_hash_code = false>
92 class __unordered_multiset
93 : public _Hashtable<_Value, _Value, _Alloc,
94 std::_Identity<_Value>, _Pred,
95 _Hash, __detail::_Mod_range_hashing,
96 __detail::_Default_ranged_hash,
97 __detail::_Prime_rehash_policy,
98 __cache_hash_code, true, false>
99 {
100 typedef _Hashtable<_Value, _Value, _Alloc,
101 std::_Identity<_Value>, _Pred,
102 _Hash, __detail::_Mod_range_hashing,
103 __detail::_Default_ranged_hash,
104 __detail::_Prime_rehash_policy,
105 __cache_hash_code, true, false>
f910786b 106 _Base;
e133ace8
PC
107
108 public:
109 typedef typename _Base::size_type size_type;
110 typedef typename _Base::hasher hasher;
111 typedef typename _Base::key_equal key_equal;
112 typedef typename _Base::allocator_type allocator_type;
f910786b 113
e133ace8
PC
114 explicit
115 __unordered_multiset(size_type __n = 10,
116 const hasher& __hf = hasher(),
117 const key_equal& __eql = key_equal(),
118 const allocator_type& __a = allocator_type())
119 : _Base(__n, __hf, __detail::_Mod_range_hashing(),
120 __detail::_Default_ranged_hash(), __eql,
121 std::_Identity<_Value>(), __a)
122 { }
123
124
125 template<typename _InputIterator>
f910786b 126 __unordered_multiset(_InputIterator __f, _InputIterator __l,
e133ace8 127 typename _Base::size_type __n = 0,
f910786b
BK
128 const hasher& __hf = hasher(),
129 const key_equal& __eql = key_equal(),
e133ace8
PC
130 const allocator_type& __a = allocator_type())
131 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
132 __detail::_Default_ranged_hash(), __eql,
133 std::_Identity<_Value>(), __a)
f910786b 134 { }
e133ace8
PC
135 };
136
137 template<class _Value, class _Hash, class _Pred, class _Alloc,
138 bool __cache_hash_code>
139 inline void
939759fc
BK
140 swap(__unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __x,
141 __unordered_set<_Value, _Hash, _Pred, _Alloc, __cache_hash_code>& __y)
e133ace8
PC
142 { __x.swap(__y); }
143
144 template<class _Value, class _Hash, class _Pred, class _Alloc,
145 bool __cache_hash_code>
146 inline void
147 swap(__unordered_multiset<_Value, _Hash, _Pred,
148 _Alloc, __cache_hash_code>& __x,
149 __unordered_multiset<_Value, _Hash, _Pred,
150 _Alloc, __cache_hash_code>& __y)
151 { __x.swap(__y); }
152
153
aac2878e
BK
154 /**
155 * @brief A standard container composed of unique keys (containing
156 * at most one of each key value) in which the elements' keys are
157 * the elements themselves.
158 *
aac2878e
BK
159 * @ingroup unordered_associative_containers
160 *
161 * Meets the requirements of a <a href="tables.html#65">container</a>, and
162 * <a href="tables.html#xx">unordered associative container</a>
163 *
164 * @param Value Type of key objects.
165 * @param Hash Hashing function object type, defaults to hash<Value>.
166 * @param Pred Predicate function object type, defaults to equal_to<Value>.
167 * @param Alloc Allocator type, defaults to allocator<Key>.
168 */
e133ace8
PC
169 template<class _Value,
170 class _Hash = hash<_Value>,
171 class _Pred = std::equal_to<_Value>,
172 class _Alloc = std::allocator<_Value> >
173 class unordered_set
174 : public __unordered_set<_Value, _Hash, _Pred, _Alloc>
175 {
176 typedef __unordered_set<_Value, _Hash, _Pred, _Alloc> _Base;
177
178 public:
988499f4 179 typedef typename _Base::value_type value_type;
e133ace8
PC
180 typedef typename _Base::size_type size_type;
181 typedef typename _Base::hasher hasher;
182 typedef typename _Base::key_equal key_equal;
183 typedef typename _Base::allocator_type allocator_type;
f910786b 184
e133ace8
PC
185 explicit
186 unordered_set(size_type __n = 10,
187 const hasher& __hf = hasher(),
188 const key_equal& __eql = key_equal(),
189 const allocator_type& __a = allocator_type())
190 : _Base(__n, __hf, __eql, __a)
191 { }
192
193 template<typename _InputIterator>
f910786b 194 unordered_set(_InputIterator __f, _InputIterator __l,
e133ace8 195 size_type __n = 10,
f910786b
BK
196 const hasher& __hf = hasher(),
197 const key_equal& __eql = key_equal(),
e133ace8
PC
198 const allocator_type& __a = allocator_type())
199 : _Base(__f, __l, __n, __hf, __eql, __a)
f910786b 200 { }
e133ace8
PC
201 };
202
aac2878e
BK
203 /**
204 * @brief A standard container composed of equivalent keys
205 * (possibly containing multiple of each key value) in which the
206 * elements' keys are the elements themselves.
207 *
aac2878e
BK
208 * @ingroup unordered_associative_containers
209 *
210 * Meets the requirements of a <a href="tables.html#65">container</a>, and
211 * <a href="tables.html#xx">unordered associative container</a>
212 *
213 * @param Value Type of key objects.
214 * @param Hash Hashing function object type, defaults to hash<Value>.
215 * @param Pred Predicate function object type, defaults to equal_to<Value>.
216 * @param Alloc Allocator type, defaults to allocator<Key>.
217 */
e133ace8
PC
218 template<class _Value,
219 class _Hash = hash<_Value>,
220 class _Pred = std::equal_to<_Value>,
221 class _Alloc = std::allocator<_Value> >
222 class unordered_multiset
223 : public __unordered_multiset<_Value, _Hash, _Pred, _Alloc>
224 {
225 typedef __unordered_multiset<_Value, _Hash, _Pred, _Alloc> _Base;
226
227 public:
988499f4 228 typedef typename _Base::value_type value_type;
e133ace8
PC
229 typedef typename _Base::size_type size_type;
230 typedef typename _Base::hasher hasher;
231 typedef typename _Base::key_equal key_equal;
232 typedef typename _Base::allocator_type allocator_type;
f910786b 233
e133ace8
PC
234 explicit
235 unordered_multiset(size_type __n = 10,
236 const hasher& __hf = hasher(),
237 const key_equal& __eql = key_equal(),
238 const allocator_type& __a = allocator_type())
239 : _Base(__n, __hf, __eql, __a)
240 { }
241
242
243 template<typename _InputIterator>
f910786b 244 unordered_multiset(_InputIterator __f, _InputIterator __l,
e133ace8 245 typename _Base::size_type __n = 0,
f910786b
BK
246 const hasher& __hf = hasher(),
247 const key_equal& __eql = key_equal(),
e133ace8
PC
248 const allocator_type& __a = allocator_type())
249 : _Base(__f, __l, __n, __hf, __eql, __a)
f910786b 250 { }
e133ace8
PC
251 };
252
2839c151
PC
253 template<class _Value, class _Hash, class _Pred, class _Alloc>
254 inline void
255 swap(unordered_set<_Value, _Hash, _Pred, _Alloc>& __x,
256 unordered_set<_Value, _Hash, _Pred, _Alloc>& __y)
257 { __x.swap(__y); }
258
259 template<class _Value, class _Hash, class _Pred, class _Alloc>
260 inline void
261 swap(unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __x,
262 unordered_multiset<_Value, _Hash, _Pred, _Alloc>& __y)
263 { __x.swap(__y); }
4a15d842 264}
12ffa228
BK
265
266_GLIBCXX_END_NAMESPACE_VERSION
3b2524b1 267}