IOSS  2.0
hopscotch_set.h
Go to the documentation of this file.
1 /**
2  * MIT License
3  *
4  * Copyright (c) 2017 Tessil
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all
14  * copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  */
24 #ifndef TSL_HOPSCOTCH_SET_H
25 #define TSL_HOPSCOTCH_SET_H
26 
27 #include "hopscotch_hash.h"
28 #include <algorithm>
29 #include <cstddef>
30 #include <functional>
31 #include <initializer_list>
32 #include <list>
33 #include <memory>
34 #include <type_traits>
35 #include <utility>
36 
37 namespace tsl {
38 
39  /**
40  * Implementation of a hash set using the hopscotch hashing algorithm.
41  *
42  * The Key must be either nothrow move-constructible, copy-constuctible or both.
43  *
44  * The size of the neighborhood (NeighborhoodSize) must be > 0 and <= 62 if StoreHash is false.
45  * When StoreHash is true, 32-bits of the hash will be stored alongside the neighborhood limiting
46  * the NeighborhoodSize to <= 30. There is no memory usage difference between
47  * 'NeighborhoodSize 62; StoreHash false' and 'NeighborhoodSize 30; StoreHash true'.
48  *
49  * Storing the hash may improve performance on insert during the rehash process if the hash takes
50  * time to compute. It may also improve read performance if the KeyEqual function takes time (or
51  * incurs a cache-miss). If used with simple Hash and KeyEqual it may slow things down.
52  *
53  * StoreHash can only be set if the GrowthPolicy is set to tsl::power_of_two_growth_policy.
54  *
55  * GrowthPolicy defines how the set grows and consequently how a hash value is mapped to a bucket.
56  * By default the set uses tsl::power_of_two_growth_policy. This policy keeps the number of
57  * buckets to a power of two and uses a mask to set the hash to a bucket instead of the slow
58  * modulo. You may define your own growth policy, check tsl::power_of_two_growth_policy for the
59  * interface.
60  *
61  * If the destructor of Key throws an exception, behaviour of the class is undefined.
62  *
63  * Iterators invalidation:
64  * - clear, operator=, reserve, rehash: always invalidate the iterators.
65  * - insert, emplace, emplace_hint, operator[]: if there is an effective insert, invalidate the
66  * iterators if a displacement is needed to resolve a collision (which mean that most of the time,
67  * insert will invalidate the iterators). Or if there is a rehash.
68  * - erase: iterator on the erased element is the only one which become invalid.
69  */
70  template <class Key, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>,
71  class Allocator = std::allocator<Key>, unsigned int NeighborhoodSize = 62,
72  bool StoreHash = false, class GrowthPolicy = tsl::hh::power_of_two_growth_policy<2>>
74  {
75  private:
76  template <typename U>
78 
79  class KeySelect
80  {
81  public:
82  using key_type = Key;
83 
84  const key_type &operator()(const Key &key) const { return key; }
85 
86  key_type &operator()(Key &key) { return key; }
87  };
88 
89  using overflow_container_type = std::list<Key, Allocator>;
90  using ht = detail_hopscotch_hash::hopscotch_hash<Key, KeySelect, void, Hash, KeyEqual,
91  Allocator, NeighborhoodSize, StoreHash,
92  GrowthPolicy, overflow_container_type>;
93 
94  public:
95  using key_type = typename ht::key_type;
96  using value_type = typename ht::value_type;
97  using size_type = typename ht::size_type;
99  using hasher = typename ht::hasher;
100  using key_equal = typename ht::key_equal;
102  using reference = typename ht::reference;
104  using pointer = typename ht::pointer;
106  using iterator = typename ht::iterator;
108 
109  /*
110  * Constructors
111  */
112  hopscotch_set() : hopscotch_set(ht::DEFAULT_INIT_BUCKETS_SIZE) {}
113 
114  explicit hopscotch_set(size_type bucket_count, const Hash &hash = Hash(),
115  const KeyEqual &equal = KeyEqual(), const Allocator &alloc = Allocator())
116  : m_ht(bucket_count, hash, equal, alloc, ht::DEFAULT_MAX_LOAD_FACTOR)
117  {
118  }
119 
120  hopscotch_set(size_type bucket_count, const Allocator &alloc)
121  : hopscotch_set(bucket_count, Hash(), KeyEqual(), alloc)
122  {
123  }
124 
125  hopscotch_set(size_type bucket_count, const Hash &hash, const Allocator &alloc)
126  : hopscotch_set(bucket_count, hash, KeyEqual(), alloc)
127  {
128  }
129 
130  explicit hopscotch_set(const Allocator &alloc)
131  : hopscotch_set(ht::DEFAULT_INIT_BUCKETS_SIZE, alloc)
132  {
133  }
134 
135  template <class InputIt>
136  hopscotch_set(InputIt first, InputIt last,
137  size_type bucket_count = ht::DEFAULT_INIT_BUCKETS_SIZE, const Hash &hash = Hash(),
138  const KeyEqual &equal = KeyEqual(), const Allocator &alloc = Allocator())
139  : hopscotch_set(bucket_count, hash, equal, alloc)
140  {
141  insert(first, last);
142  }
143 
144  template <class InputIt>
145  hopscotch_set(InputIt first, InputIt last, size_type bucket_count, const Allocator &alloc)
146  : hopscotch_set(first, last, bucket_count, Hash(), KeyEqual(), alloc)
147  {
148  }
149 
150  template <class InputIt>
151  hopscotch_set(InputIt first, InputIt last, size_type bucket_count, const Hash &hash,
152  const Allocator &alloc)
153  : hopscotch_set(first, last, bucket_count, hash, KeyEqual(), alloc)
154  {
155  }
156 
157  hopscotch_set(std::initializer_list<value_type> init,
158  size_type bucket_count = ht::DEFAULT_INIT_BUCKETS_SIZE, const Hash &hash = Hash(),
159  const KeyEqual &equal = KeyEqual(), const Allocator &alloc = Allocator())
160  : hopscotch_set(init.begin(), init.end(), bucket_count, hash, equal, alloc)
161  {
162  }
163 
164  hopscotch_set(std::initializer_list<value_type> init, size_type bucket_count,
165  const Allocator &alloc)
166  : hopscotch_set(init.begin(), init.end(), bucket_count, Hash(), KeyEqual(), alloc)
167  {
168  }
169 
170  hopscotch_set(std::initializer_list<value_type> init, size_type bucket_count, const Hash &hash,
171  const Allocator &alloc)
172  : hopscotch_set(init.begin(), init.end(), bucket_count, hash, KeyEqual(), alloc)
173  {
174  }
175 
176  hopscotch_set &operator=(std::initializer_list<value_type> ilist)
177  {
178  m_ht.clear();
179 
180  m_ht.reserve(ilist.size());
181  m_ht.insert(ilist.begin(), ilist.end());
182 
183  return *this;
184  }
185 
187 
188  /*
189  * Iterators
190  */
191  iterator begin() noexcept { return m_ht.begin(); }
192  const_iterator begin() const noexcept { return m_ht.begin(); }
193  const_iterator cbegin() const noexcept { return m_ht.cbegin(); }
194 
195  iterator end() noexcept { return m_ht.end(); }
196  const_iterator end() const noexcept { return m_ht.end(); }
197  const_iterator cend() const noexcept { return m_ht.cend(); }
198 
199  /*
200  * Capacity
201  */
202  bool empty() const noexcept { return m_ht.empty(); }
203  size_type size() const noexcept { return m_ht.size(); }
204  size_type max_size() const noexcept { return m_ht.max_size(); }
205 
206  /*
207  * Modifiers
208  */
209  void clear() noexcept { m_ht.clear(); }
210 
211  std::pair<iterator, bool> insert(const value_type &value) { return m_ht.insert(value); }
212  std::pair<iterator, bool> insert(value_type &&value) { return m_ht.insert(std::move(value)); }
213 
215  {
216  return m_ht.insert(hint, value);
217  }
219  {
220  return m_ht.insert(hint, std::move(value));
221  }
222 
223  template <class InputIt> void insert(InputIt first, InputIt last) { m_ht.insert(first, last); }
224  void insert(std::initializer_list<value_type> ilist)
225  {
226  m_ht.insert(ilist.begin(), ilist.end());
227  }
228 
229  /**
230  * Due to the way elements are stored, emplace will need to move or copy the key-value once.
231  * The method is equivalent to insert(value_type(std::forward<Args>(args)...));
232  *
233  * Mainly here for compatibility with the std::unordered_map interface.
234  */
235  template <class... Args> std::pair<iterator, bool> emplace(Args &&... args)
236  {
237  return m_ht.emplace(std::forward<Args>(args)...);
238  }
239 
240  /**
241  * Due to the way elements are stored, emplace_hint will need to move or copy the key-value
242  * once. The method is equivalent to insert(hint, value_type(std::forward<Args>(args)...));
243  *
244  * Mainly here for compatibility with the std::unordered_map interface.
245  */
246  template <class... Args> iterator emplace_hint(const_iterator hint, Args &&... args)
247  {
248  return m_ht.emplace_hint(hint, std::forward<Args>(args)...);
249  }
250 
251  iterator erase(iterator pos) { return m_ht.erase(pos); }
252  iterator erase(const_iterator pos) { return m_ht.erase(pos); }
253  iterator erase(const_iterator first, const_iterator last) { return m_ht.erase(first, last); }
254  size_type erase(const key_type &key) { return m_ht.erase(key); }
255 
256  /**
257  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
258  * the same as hash_function()(key). Usefull to speed-up the lookup to the value if you already
259  * have the hash.
260  */
261  size_type erase(const key_type &key, std::size_t precalculated_hash)
262  {
263  return m_ht.erase(key, precalculated_hash);
264  }
265 
266  /**
267  * This overload only participates in the overload resolution if the typedef
268  * KeyEqual::is_transparent exists. If so, K must be hashable and comparable to Key.
269  */
270  template <class K, class KE = KeyEqual,
271  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
272  size_type erase(const K &key)
273  {
274  return m_ht.erase(key);
275  }
276 
277  /**
278  * @copydoc erase(const K& key)
279  *
280  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
281  * the same as hash_function()(key). Usefull to speed-up the lookup to the value if you already
282  * have the hash.
283  */
284  template <class K, class KE = KeyEqual,
285  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
286  size_type erase(const K &key, std::size_t precalculated_hash)
287  {
288  return m_ht.erase(key, precalculated_hash);
289  }
290 
291  void swap(hopscotch_set &other) { other.m_ht.swap(m_ht); }
292 
293  /*
294  * Lookup
295  */
296  size_type count(const Key &key) const { return m_ht.count(key); }
297 
298  /**
299  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
300  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
301  * hash.
302  */
303  size_type count(const Key &key, std::size_t precalculated_hash) const
304  {
305  return m_ht.count(key, precalculated_hash);
306  }
307 
308  /**
309  * This overload only participates in the overload resolution if the typedef
310  * KeyEqual::is_transparent exists. If so, K must be hashable and comparable to Key.
311  */
312  template <class K, class KE = KeyEqual,
313  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
314  size_type count(const K &key) const
315  {
316  return m_ht.count(key);
317  }
318 
319  /**
320  * @copydoc count(const K& key) const
321  *
322  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
323  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
324  * hash.
325  */
326  template <class K, class KE = KeyEqual,
327  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
328  size_type count(const K &key, std::size_t precalculated_hash) const
329  {
330  return m_ht.count(key, precalculated_hash);
331  }
332 
333  iterator find(const Key &key) { return m_ht.find(key); }
334 
335  /**
336  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
337  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
338  * hash.
339  */
340  iterator find(const Key &key, std::size_t precalculated_hash)
341  {
342  return m_ht.find(key, precalculated_hash);
343  }
344 
345  const_iterator find(const Key &key) const { return m_ht.find(key); }
346 
347  /**
348  * @copydoc find(const Key& key, std::size_t precalculated_hash)
349  */
350  const_iterator find(const Key &key, std::size_t precalculated_hash) const
351  {
352  return m_ht.find(key, precalculated_hash);
353  }
354 
355  /**
356  * This overload only participates in the overload resolution if the typedef
357  * KeyEqual::is_transparent exists. If so, K must be hashable and comparable to Key.
358  */
359  template <class K, class KE = KeyEqual,
360  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
361  iterator find(const K &key)
362  {
363  return m_ht.find(key);
364  }
365 
366  /**
367  * @copydoc find(const K& key)
368  *
369  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
370  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
371  * hash.
372  */
373  template <class K, class KE = KeyEqual,
374  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
375  iterator find(const K &key, std::size_t precalculated_hash)
376  {
377  return m_ht.find(key, precalculated_hash);
378  }
379 
380  /**
381  * @copydoc find(const K& key)
382  */
383  template <class K, class KE = KeyEqual,
384  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
385  const_iterator find(const K &key) const
386  {
387  return m_ht.find(key);
388  }
389 
390  /**
391  * @copydoc find(const K& key)
392  *
393  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
394  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
395  * hash.
396  */
397  template <class K, class KE = KeyEqual,
398  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
399  const_iterator find(const K &key, std::size_t precalculated_hash) const
400  {
401  return m_ht.find(key, precalculated_hash);
402  }
403 
404  std::pair<iterator, iterator> equal_range(const Key &key) { return m_ht.equal_range(key); }
405 
406  /**
407  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
408  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
409  * hash.
410  */
411  std::pair<iterator, iterator> equal_range(const Key &key, std::size_t precalculated_hash)
412  {
413  return m_ht.equal_range(key, precalculated_hash);
414  }
415 
416  std::pair<const_iterator, const_iterator> equal_range(const Key &key) const
417  {
418  return m_ht.equal_range(key);
419  }
420 
421  /**
422  * @copydoc equal_range(const Key& key, std::size_t precalculated_hash)
423  */
424  std::pair<const_iterator, const_iterator> equal_range(const Key & key,
425  std::size_t precalculated_hash) const
426  {
427  return m_ht.equal_range(key, precalculated_hash);
428  }
429 
430  /**
431  * This overload only participates in the overload resolution if the typedef
432  * KeyEqual::is_transparent exists. If so, K must be hashable and comparable to Key.
433  */
434  template <class K, class KE = KeyEqual,
435  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
436  std::pair<iterator, iterator> equal_range(const K &key)
437  {
438  return m_ht.equal_range(key);
439  }
440 
441  /**
442  * @copydoc equal_range(const K& key)
443  *
444  * Use the hash value 'precalculated_hash' instead of hashing the key. The hash value should be
445  * the same as hash_function()(key). Usefull to speed-up the lookup if you already have the
446  * hash.
447  */
448  template <class K, class KE = KeyEqual,
449  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
450  std::pair<iterator, iterator> equal_range(const K &key, std::size_t precalculated_hash)
451  {
452  return m_ht.equal_range(key, precalculated_hash);
453  }
454 
455  /**
456  * @copydoc equal_range(const K& key)
457  */
458  template <class K, class KE = KeyEqual,
459  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
460  std::pair<const_iterator, const_iterator> equal_range(const K &key) const
461  {
462  return m_ht.equal_range(key);
463  }
464 
465  /**
466  * @copydoc equal_range(const K& key, std::size_t precalculated_hash)
467  */
468  template <class K, class KE = KeyEqual,
469  typename std::enable_if<has_is_transparent<KE>::value>::type * = nullptr>
470  std::pair<const_iterator, const_iterator> equal_range(const K & key,
471  std::size_t precalculated_hash) const
472  {
473  return m_ht.equal_range(key, precalculated_hash);
474  }
475 
476  /*
477  * Bucket interface
478  */
479  size_type bucket_count() const { return m_ht.bucket_count(); }
481 
482  /*
483  * Hash policy
484  */
485  float load_factor() const { return m_ht.load_factor(); }
486  float max_load_factor() const { return m_ht.max_load_factor(); }
487  void max_load_factor(float ml) { m_ht.max_load_factor(ml); }
488 
489  void rehash(size_type count_) { m_ht.rehash(count_); }
490  void reserve(size_type count_) { m_ht.reserve(count_); }
491 
492  /*
493  * Observers
494  */
495  hasher hash_function() const { return m_ht.hash_function(); }
496  key_equal key_eq() const { return m_ht.key_eq(); }
497 
498  /*
499  * Other
500  */
501 
502  /**
503  * Convert a const_iterator to an iterator.
504  */
506 
507  size_type overflow_size() const noexcept { return m_ht.overflow_size(); }
508 
509  friend bool operator==(const hopscotch_set &lhs, const hopscotch_set &rhs)
510  {
511  if (lhs.size() != rhs.size()) {
512  return false;
513  }
514 
515  for (const auto &element_lhs : lhs) {
516  const auto it_element_rhs = rhs.find(element_lhs);
517  if (it_element_rhs == rhs.cend()) {
518  return false;
519  }
520  }
521 
522  return true;
523  }
524 
525  friend bool operator!=(const hopscotch_set &lhs, const hopscotch_set &rhs)
526  {
527  return !operator==(lhs, rhs);
528  }
529 
530  friend void swap(hopscotch_set &lhs, hopscotch_set &rhs) { lhs.swap(rhs); }
531 
532  private:
534  };
535 
536  /**
537  * Same as `tsl::hopscotch_set<Key, Hash, KeyEqual, Allocator, NeighborhoodSize, StoreHash,
538  * tsl::hh::prime_growth_policy>`.
539  */
540  template <class Key, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>,
541  class Allocator = std::allocator<Key>, unsigned int NeighborhoodSize = 62,
542  bool StoreHash = false>
543  using hopscotch_pg_set = hopscotch_set<Key, Hash, KeyEqual, Allocator, NeighborhoodSize,
545 
546 } // end namespace tsl
547 
548 #endif
hopscotch_set(std::initializer_list< value_type > init, size_type bucket_count, const Allocator &alloc)
Definition: hopscotch_set.h:164
Definition: hopscotch_hash.h:69
void reserve(size_type count_)
Definition: hopscotch_hash.h:1162
iterator find(const K &key)
Definition: hopscotch_hash.h:1071
key_equal key_eq() const
Definition: hopscotch_set.h:496
size_type bucket_count() const
Definition: hopscotch_hash.h:1114
typename ht::const_iterator const_iterator
Definition: hopscotch_set.h:107
iterator insert(const_iterator hint, value_type &&value)
Definition: hopscotch_set.h:218
std::pair< iterator, iterator > equal_range(const Key &key)
Definition: hopscotch_set.h:404
typename ht::allocator_type allocator_type
Definition: hopscotch_set.h:101
typename ht::const_pointer const_pointer
Definition: hopscotch_set.h:105
std::pair< iterator, bool > insert(value_type &&value)
Definition: hopscotch_set.h:212
iterator erase(iterator pos)
Definition: hopscotch_set.h:251
const_iterator cbegin() const noexcept
Definition: hopscotch_hash.h:749
hopscotch_set(InputIt first, InputIt last, size_type bucket_count=ht::DEFAULT_INIT_BUCKETS_SIZE, const Hash &hash=Hash(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator())
Definition: hopscotch_set.h:136
std::pair< iterator, bool > insert(const value_type &value)
Definition: hopscotch_hash.h:793
hopscotch_set(std::initializer_list< value_type > init, size_type bucket_count=ht::DEFAULT_INIT_BUCKETS_SIZE, const Hash &hash=Hash(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator())
Definition: hopscotch_set.h:157
const_iterator find(const K &key, std::size_t precalculated_hash) const
Definition: hopscotch_set.h:399
hopscotch_set & operator=(std::initializer_list< value_type > ilist)
Definition: hopscotch_set.h:176
std::pair< iterator, bool > insert(const value_type &value)
Definition: hopscotch_set.h:211
iterator end() noexcept
Definition: hopscotch_hash.h:759
iterator begin() noexcept
Definition: hopscotch_set.h:191
Definition: hopscotch_growth_policy.h:37
const_iterator end() const noexcept
Definition: hopscotch_set.h:196
const_iterator begin() const noexcept
Definition: hopscotch_set.h:192
hopscotch_set(size_type bucket_count, const Hash &hash=Hash(), const KeyEqual &equal=KeyEqual(), const Allocator &alloc=Allocator())
Definition: hopscotch_set.h:114
void reserve(size_type count_)
Definition: hopscotch_set.h:490
typename ht::hasher hasher
Definition: hopscotch_set.h:99
iterator end() noexcept
Definition: hopscotch_set.h:195
size_type erase(const K &key, std::size_t precalculated_hash)
Definition: hopscotch_set.h:286
iterator insert(const_iterator hint, const value_type &value)
Definition: hopscotch_set.h:214
iterator begin() noexcept
Definition: hopscotch_hash.h:737
typename ht::key_equal key_equal
Definition: hopscotch_set.h:100
hasher hash_function() const
Definition: hopscotch_hash.h:1170
friend bool operator!=(const hopscotch_set &lhs, const hopscotch_set &rhs)
Definition: hopscotch_set.h:525
key_type & operator()(Key &key)
Definition: hopscotch_set.h:86
float max_load_factor() const
Definition: hopscotch_hash.h:1147
bool empty() const noexcept
Definition: hopscotch_set.h:202
iterator find(const K &key, std::size_t precalculated_hash)
Definition: hopscotch_set.h:375
iterator find(const K &key)
Definition: hopscotch_set.h:361
void rehash(size_type count_)
Definition: hopscotch_set.h:489
std::pair< iterator, iterator > equal_range(const K &key)
Definition: hopscotch_set.h:436
Key key_type
Definition: hopscotch_set.h:82
hopscotch_set(size_type bucket_count, const Hash &hash, const Allocator &alloc)
Definition: hopscotch_set.h:125
hasher hash_function() const
Definition: hopscotch_set.h:495
void swap(hopscotch_set &other)
Definition: hopscotch_set.h:291
iterator mutable_iterator(const_iterator pos)
Definition: hopscotch_hash.h:1177
bool empty() const noexcept
Definition: hopscotch_hash.h:774
iterator emplace_hint(const_iterator hint, Args &&... args)
Definition: hopscotch_hash.h:888
size_type size() const noexcept
Definition: hopscotch_hash.h:776
hopscotch_set(InputIt first, InputIt last, size_type bucket_count, const Hash &hash, const Allocator &alloc)
Definition: hopscotch_set.h:151
std::pair< const_iterator, const_iterator > equal_range(const K &key, std::size_t precalculated_hash) const
Definition: hopscotch_set.h:470
std::pair< iterator, iterator > equal_range(const K &key)
Definition: hopscotch_hash.h:1088
size_type size() const noexcept
Definition: hopscotch_set.h:203
std::pair< iterator, bool > emplace(Args &&... args)
Definition: hopscotch_set.h:235
friend bool operator==(const hopscotch_set &lhs, const hopscotch_set &rhs)
Definition: hopscotch_set.h:509
ht m_ht
Definition: hopscotch_set.h:533
typename ht::value_type value_type
Definition: hopscotch_set.h:96
typename ht::iterator iterator
Definition: hopscotch_set.h:106
float load_factor() const
Definition: hopscotch_set.h:485
typename ht::difference_type difference_type
Definition: hopscotch_set.h:98
size_type count(const K &key) const
Definition: hopscotch_set.h:314
std::pair< const_iterator, const_iterator > equal_range(const K &key) const
Definition: hopscotch_set.h:460
hopscotch_set(std::initializer_list< value_type > init, size_type bucket_count, const Hash &hash, const Allocator &alloc)
Definition: hopscotch_set.h:170
size_type count(const Key &key, std::size_t precalculated_hash) const
Definition: hopscotch_set.h:303
typename ht::reference reference
Definition: hopscotch_set.h:102
std::pair< iterator, bool > emplace(Args &&... args)
Definition: hopscotch_hash.h:883
std::list< Key, Allocator > overflow_container_type
Definition: hopscotch_set.h:89
std::pair< const_iterator, const_iterator > equal_range(const Key &key, std::size_t precalculated_hash) const
Definition: hopscotch_set.h:424
void swap(hopscotch_hash &other)
Definition: hopscotch_hash.h:987
size_type bucket_count() const
Definition: hopscotch_set.h:479
hopscotch_set(const Allocator &alloc)
Definition: hopscotch_set.h:130
typename ht::key_type key_type
Definition: hopscotch_set.h:95
const_iterator find(const Key &key) const
Definition: hopscotch_set.h:345
Definition: hopscotch_set.h:79
size_type erase(const key_type &key, std::size_t precalculated_hash)
Definition: hopscotch_set.h:261
friend void swap(hopscotch_set &lhs, hopscotch_set &rhs)
Definition: hopscotch_set.h:530
hopscotch_set(size_type bucket_count, const Allocator &alloc)
Definition: hopscotch_set.h:120
typename ht::pointer pointer
Definition: hopscotch_set.h:104
const_iterator find(const Key &key, std::size_t precalculated_hash) const
Definition: hopscotch_set.h:350
void insert(InputIt first, InputIt last)
Definition: hopscotch_set.h:223
std::pair< iterator, iterator > equal_range(const K &key, std::size_t precalculated_hash)
Definition: hopscotch_set.h:450
key_equal key_eq() const
Definition: hopscotch_hash.h:1172
std::pair< const_iterator, const_iterator > equal_range(const Key &key) const
Definition: hopscotch_set.h:416
const key_type & operator()(const Key &key) const
Definition: hopscotch_set.h:84
iterator mutable_iterator(const_iterator pos)
Definition: hopscotch_set.h:505
hopscotch_set()
Definition: hopscotch_set.h:112
hopscotch_set(InputIt first, InputIt last, size_type bucket_count, const Allocator &alloc)
Definition: hopscotch_set.h:145
size_type max_bucket_count() const
Definition: hopscotch_hash.h:1128
Definition: hopscotch_growth_policy.h:250
typename ht::size_type size_type
Definition: hopscotch_set.h:97
size_type count(const K &key) const
Definition: hopscotch_hash.h:1064
size_type erase(const key_type &key)
Definition: hopscotch_set.h:254
size_type erase(const K &key)
Definition: hopscotch_set.h:272
typename ht::const_reference const_reference
Definition: hopscotch_set.h:103
size_type count(const K &key, std::size_t precalculated_hash) const
Definition: hopscotch_set.h:328
size_type max_bucket_count() const
Definition: hopscotch_set.h:480
void clear() noexcept
Definition: hopscotch_set.h:209
struct anonymous_namespace{Ioss_SmartAssert.C}::assert_initializer init
iterator emplace_hint(const_iterator hint, Args &&... args)
Definition: hopscotch_set.h:246
iterator erase(const_iterator first, const_iterator last)
Definition: hopscotch_set.h:253
const_iterator cbegin() const noexcept
Definition: hopscotch_set.h:193
Definition: hopscotch_set.h:73
float max_load_factor() const
Definition: hopscotch_set.h:486
float load_factor() const
Definition: hopscotch_hash.h:1138
size_type overflow_size() const noexcept
Definition: hopscotch_hash.h:1191
iterator erase(const_iterator pos)
Definition: hopscotch_set.h:252
size_type max_size() const noexcept
Definition: hopscotch_set.h:204
void rehash(size_type count_)
Definition: hopscotch_hash.h:1156
iterator find(const Key &key, std::size_t precalculated_hash)
Definition: hopscotch_set.h:340
size_type overflow_size() const noexcept
Definition: hopscotch_set.h:507
iterator find(const Key &key)
Definition: hopscotch_set.h:333
std::pair< iterator, iterator > equal_range(const Key &key, std::size_t precalculated_hash)
Definition: hopscotch_set.h:411
size_type max_size() const noexcept
Definition: hopscotch_hash.h:778
void clear() noexcept
Definition: hopscotch_hash.h:783
const_iterator cend() const noexcept
Definition: hopscotch_hash.h:766
const_iterator cend() const noexcept
Definition: hopscotch_set.h:197
void max_load_factor(float ml)
Definition: hopscotch_set.h:487
size_type count(const Key &key) const
Definition: hopscotch_set.h:296
void insert(std::initializer_list< value_type > ilist)
Definition: hopscotch_set.h:224
allocator_type get_allocator() const
Definition: hopscotch_hash.h:732
iterator erase(iterator pos)
Definition: hopscotch_hash.h:928
const_iterator find(const K &key) const
Definition: hopscotch_set.h:385
allocator_type get_allocator() const
Definition: hopscotch_set.h:186