momo  3.10
unordered_map.h
Go to the documentation of this file.
1 /**********************************************************\
2 
3  This file is part of the
4  https://github.com/morzhovets/momo
5  project, distributed under the MIT License. See
6  https://github.com/morzhovets/momo/blob/branch_cpp11/LICENSE
7  for details.
8 
9  momo/stdish/unordered_map.h
10 
11  namespace momo::stdish:
12  class unordered_map
13  class unordered_map_open
14 
15 \**********************************************************/
16 
17 #ifndef MOMO_INCLUDE_GUARD_STDISH_UNORDERED_MAP
18 #define MOMO_INCLUDE_GUARD_STDISH_UNORDERED_MAP
19 
20 #include "../HashMap.h"
21 #include "set_map_utility.h"
22 
23 namespace momo
24 {
25 
26 namespace stdish
27 {
28 
55 template<typename TKey, typename TMapped,
56  typename THashFunc = HashCoder<TKey>,
57  typename TEqualFunc = std::equal_to<TKey>,
58  typename TAllocator = std::allocator<std::pair<const TKey, TMapped>>,
59  typename THashMap = HashMap<TKey, TMapped, HashTraitsStd<TKey, THashFunc, TEqualFunc>,
60  MemManagerStd<TAllocator>>>
62 {
63 private:
64  typedef THashMap HashMap;
65  typedef typename HashMap::HashTraits HashTraits;
66  typedef typename HashMap::MemManager MemManager;
67 
68  typedef typename HashMap::Iterator HashMapIterator;
69 
70 public:
71  typedef TKey key_type;
72  typedef TMapped mapped_type;
73  typedef THashFunc hasher;
74  typedef TEqualFunc key_equal;
75  typedef TAllocator allocator_type;
76 
77  typedef HashMap nested_container_type;
78 
79  typedef size_t size_type;
80  typedef ptrdiff_t difference_type;
81 
82  typedef std::pair<const key_type, mapped_type> value_type;
83 
84  typedef momo::internal::HashDerivedIterator<HashMapIterator,
87 
88  typedef typename iterator::Reference reference;
90 
91  typedef typename iterator::Pointer pointer;
93  //typedef typename std::allocator_traits<allocator_type>::pointer pointer;
94  //typedef typename std::allocator_traits<allocator_type>::const_pointer const_pointer;
95 
98 
102 
103 private:
104  template<typename KeyArg>
105  struct IsValidKeyArg : public HashTraits::template IsValidKeyArg<KeyArg>
106  {
107  };
108 
109  struct ConstIteratorProxy : public const_iterator
110  {
111  typedef const_iterator ConstIterator;
112  MOMO_DECLARE_PROXY_CONSTRUCTOR(ConstIterator)
113  MOMO_DECLARE_PROXY_FUNCTION(ConstIterator, GetBaseIterator,
115  };
116 
117  struct IteratorProxy : public iterator
118  {
119  typedef iterator Iterator;
121  MOMO_DECLARE_PROXY_FUNCTION(Iterator, GetBaseIterator, HashMapIterator)
122  };
123 
124  struct ConstLocalIteratorProxy : public const_local_iterator
125  {
126  typedef const_local_iterator ConstLocalIterator;
127  MOMO_DECLARE_PROXY_CONSTRUCTOR(ConstLocalIterator)
128  };
129 
130  struct LocalIteratorProxy : public local_iterator
131  {
132  typedef local_iterator LocalIterator;
133  MOMO_DECLARE_PROXY_CONSTRUCTOR(LocalIterator)
134  };
135 
136  struct NodeTypeProxy : private node_type
137  {
138  typedef node_type NodeType;
139  MOMO_DECLARE_PROXY_FUNCTION(NodeType, GetExtractedPair,
140  typename NodeType::MapExtractedPair&)
141  };
142 
143 public:
145  {
146  }
147 
148  explicit unordered_map(const allocator_type& alloc)
149  : mHashMap(HashTraits(), MemManager(alloc))
150  {
151  }
152 
153  explicit unordered_map(size_type bucketCount, const allocator_type& alloc = allocator_type())
154  : mHashMap(HashTraits(bucketCount), MemManager(alloc))
155  {
156  }
157 
158  unordered_map(size_type bucketCount, const hasher& hashFunc,
159  const allocator_type& alloc = allocator_type())
160  : mHashMap(HashTraits(bucketCount, hashFunc), MemManager(alloc))
161  {
162  }
163 
164  unordered_map(size_type bucketCount, const hasher& hashFunc, const key_equal& equalFunc,
165  const allocator_type& alloc = allocator_type())
166  : mHashMap(HashTraits(bucketCount, hashFunc, equalFunc), MemManager(alloc))
167  {
168  }
169 
170  template<typename Iterator>
171  unordered_map(Iterator first, Iterator last)
172  {
173  insert(first, last);
174  }
175 
176  template<typename Iterator>
177  unordered_map(Iterator first, Iterator last, size_type bucketCount,
178  const allocator_type& alloc = allocator_type())
179  : unordered_map(bucketCount, alloc)
180  {
181  insert(first, last);
182  }
183 
184  template<typename Iterator>
185  unordered_map(Iterator first, Iterator last, size_type bucketCount, const hasher& hashFunc,
186  const allocator_type& alloc = allocator_type())
187  : unordered_map(bucketCount, hashFunc, alloc)
188  {
189  insert(first, last);
190  }
191 
192  template<typename Iterator>
193  unordered_map(Iterator first, Iterator last, size_type bucketCount, const hasher& hashFunc,
194  const key_equal& equalFunc, const allocator_type& alloc = allocator_type())
195  : unordered_map(bucketCount, hashFunc, equalFunc, alloc)
196  {
197  insert(first, last);
198  }
199 
201  : unordered_map(values.begin(), values.end())
202  {
203  }
204 
206  size_type bucketCount, const allocator_type& alloc = allocator_type())
207  : unordered_map(values.begin(), values.end(), bucketCount, alloc)
208  {
209  }
210 
212  size_type bucketCount, const hasher& hashFunc, const allocator_type& alloc = allocator_type())
213  : unordered_map(values.begin(), values.end(), bucketCount, hashFunc, alloc)
214  {
215  }
216 
218  size_type bucketCount, const hasher& hashFunc, const key_equal& equalFunc,
219  const allocator_type& alloc = allocator_type())
220  : unordered_map(values.begin(), values.end(), bucketCount, hashFunc, equalFunc, alloc)
221  {
222  }
223 
224 #ifdef MOMO_HAS_CONTAINERS_RANGES
225  template<std::ranges::input_range Range>
226  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
227  unordered_map(std::from_range_t, Range&& values)
228  {
229  insert_range(std::forward<Range>(values));
230  }
231 
232  template<std::ranges::input_range Range>
233  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
234  unordered_map(std::from_range_t, Range&& values, size_type bucketCount,
235  const allocator_type& alloc = allocator_type())
236  : unordered_map(bucketCount, alloc)
237  {
238  insert_range(std::forward<Range>(values));
239  }
240 
241  template<std::ranges::input_range Range>
242  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
243  unordered_map(std::from_range_t, Range&& values, size_type bucketCount, const hasher& hashFunc,
244  const allocator_type& alloc = allocator_type())
245  : unordered_map(bucketCount, hashFunc, alloc)
246  {
247  insert_range(std::forward<Range>(values));
248  }
249 
250  template<std::ranges::input_range Range>
251  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
252  unordered_map(std::from_range_t, Range&& values, size_type bucketCount, const hasher& hashFunc,
253  const key_equal& equalFunc, const allocator_type& alloc = allocator_type())
254  : unordered_map(bucketCount, hashFunc, equalFunc, alloc)
255  {
256  insert_range(std::forward<Range>(values));
257  }
258 #endif // MOMO_HAS_CONTAINERS_RANGES
259 
260  unordered_map(unordered_map&& right) noexcept
261  : mHashMap(std::move(right.mHashMap))
262  {
263  }
264 
266  noexcept(std::is_empty<allocator_type>::value)
267  : mHashMap(pvCreateMap(std::move(right), alloc))
268  {
269  }
270 
272  : mHashMap(right.mHashMap)
273  {
274  }
275 
277  : mHashMap(right.mHashMap, MemManager(alloc))
278  {
279  }
280 
281  ~unordered_map() = default;
282 
284  noexcept(std::is_empty<allocator_type>::value ||
285  std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value)
286  {
287  if (this != &right)
288  {
289  bool propagate = std::is_empty<allocator_type>::value ||
290  std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value;
291  allocator_type alloc = (propagate ? &right : this)->get_allocator();
292  mHashMap = pvCreateMap(std::move(right), alloc);
293  }
294  return *this;
295  }
296 
298  {
299  if (this != &right)
300  {
301  bool propagate = std::is_empty<allocator_type>::value ||
302  std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value;
303  allocator_type alloc = (propagate ? &right : this)->get_allocator();
304  mHashMap = HashMap(right.mHashMap, MemManager(alloc));
305  }
306  return *this;
307  }
308 
309  unordered_map& operator=(std::initializer_list<value_type> values)
310  {
311  HashMap hashMap(mHashMap.GetHashTraits(), MemManager(get_allocator()));
312  hashMap.Insert(values.begin(), values.end());
313  mHashMap = std::move(hashMap);
314  return *this;
315  }
316 
317  void swap(unordered_map& right) noexcept
318  {
319  MOMO_ASSERT(std::allocator_traits<allocator_type>::propagate_on_container_swap::value
320  || get_allocator() == right.get_allocator());
321  mHashMap.Swap(right.mHashMap);
322  }
323 
324  friend void swap(unordered_map& left, unordered_map& right) noexcept
325  {
326  left.swap(right);
327  }
328 
330  {
331  return mHashMap;
332  }
333 
335  {
336  return mHashMap;
337  }
338 
339  const_iterator begin() const noexcept
340  {
341  return ConstIteratorProxy(mHashMap.GetBegin());
342  }
343 
344  iterator begin() noexcept
345  {
346  return IteratorProxy(mHashMap.GetBegin());
347  }
348 
349  const_iterator end() const noexcept
350  {
351  return ConstIteratorProxy(mHashMap.GetEnd());
352  }
353 
354  iterator end() noexcept
355  {
356  return IteratorProxy(mHashMap.GetEnd());
357  }
358 
359  const_iterator cbegin() const noexcept
360  {
361  return begin();
362  }
363 
364  const_iterator cend() const noexcept
365  {
366  return end();
367  }
368 
369  float max_load_factor() const noexcept
370  {
371  return mHashMap.GetHashTraits().GetMaxLoadFactor(HashMap::bucketMaxItemCount);
372  }
373 
374  void max_load_factor(float maxLoadFactor)
375  {
376  if (maxLoadFactor == max_load_factor())
377  return;
378  if (maxLoadFactor <= 0.0 || maxLoadFactor > static_cast<float>(HashMap::bucketMaxItemCount))
379  throw std::out_of_range("invalid load factor");
380  HashTraits hashTraits(mHashMap.GetHashTraits(), maxLoadFactor);
381  HashMap hashMap(hashTraits, MemManager(get_allocator()));
382  hashMap.Reserve(size());
383  hashMap.Insert(begin(), end());
384  mHashMap = std::move(hashMap);
385  }
386 
388  {
389  return mHashMap.GetHashTraits().GetHashFunc();
390  }
391 
393  {
394  return mHashMap.GetHashTraits().GetEqualFunc();
395  }
396 
397  allocator_type get_allocator() const noexcept
398  {
399  return allocator_type(mHashMap.GetMemManager().GetByteAllocator());
400  }
401 
402  size_type max_size() const noexcept
403  {
404  return std::allocator_traits<allocator_type>::max_size(get_allocator());
405  }
406 
407  size_type size() const noexcept
408  {
409  return mHashMap.GetCount();
410  }
411 
412  MOMO_NODISCARD bool empty() const noexcept
413  {
414  return mHashMap.IsEmpty();
415  }
416 
417  void clear() noexcept
418  {
419  mHashMap.Clear();
420  }
421 
422  void rehash(size_type bucketCount)
423  {
424  bucketCount = std::minmax(bucketCount, size_t{2}).second;
425  size_t logBucketCount = momo::internal::UIntMath<>::Log2(bucketCount - 1) + 1;
426  bucketCount = size_t{1} << logBucketCount;
427  reserve(mHashMap.GetHashTraits().CalcCapacity(bucketCount, HashMap::bucketMaxItemCount));
428  }
429 
431  {
432  mHashMap.Reserve(count);
433  }
434 
436  {
437  return ConstIteratorProxy(mHashMap.Find(key));
438  }
439 
441  {
442  return IteratorProxy(mHashMap.Find(key));
443  }
444 
445  template<typename KeyArg>
447  const_iterator> find(const KeyArg& key) const
448  {
449  return ConstIteratorProxy(mHashMap.Find(key));
450  }
451 
452  template<typename KeyArg>
454  iterator> find(const KeyArg& key)
455  {
456  return IteratorProxy(mHashMap.Find(key));
457  }
458 
460  {
461  return contains(key) ? 1 : 0;
462  }
463 
464  template<typename KeyArg>
466  size_type> count(const KeyArg& key) const
467  {
468  return contains(key) ? 1 : 0;
469  }
470 
471  MOMO_FORCEINLINE bool contains(const key_type& key) const
472  {
473  return mHashMap.ContainsKey(key);
474  }
475 
476  template<typename KeyArg>
478  bool> contains(const KeyArg& key) const
479  {
480  return mHashMap.ContainsKey(key);
481  }
482 
483  MOMO_FORCEINLINE std::pair<const_iterator, const_iterator> equal_range(const key_type& key) const
484  {
485  return { find(key), end() };
486  }
487 
488  MOMO_FORCEINLINE std::pair<iterator, iterator> equal_range(const key_type& key)
489  {
490  return { find(key), end() };
491  }
492 
493  template<typename KeyArg>
495  std::pair<const_iterator, const_iterator>> equal_range(const KeyArg& key) const
496  {
497  return { find(key), end() };
498  }
499 
500  template<typename KeyArg>
502  std::pair<iterator, iterator>> equal_range(const KeyArg& key)
503  {
504  return { find(key), end() };
505  }
506 
507  template<typename ValueArg = std::pair<key_type, mapped_type>>
509  std::pair<iterator, bool>> insert(ValueArg&& valueArg)
510  {
511  return emplace(std::forward<ValueArg>(valueArg));
512  }
513 
514  template<typename ValueArg = std::pair<key_type, mapped_type>>
516  iterator> insert(const_iterator hint, ValueArg&& valueArg)
517  {
518  return emplace_hint(hint, std::forward<ValueArg>(valueArg));
519  }
520 
522  {
523  if (node.empty())
524  return { end(), false, node_type() };
525  typename HashMap::InsertResult res = mHashMap.Insert(
526  std::move(NodeTypeProxy::GetExtractedPair(node)));
527  return { IteratorProxy(res.position), res.inserted,
528  res.inserted ? node_type() : std::move(node) };
529  }
530 
532  {
533 #ifdef MOMO_USE_UNORDERED_HINT_ITERATORS
534  if (node.empty())
535  return end();
536  return IteratorProxy(mHashMap.Add(ConstIteratorProxy::GetBaseIterator(hint),
537  std::move(NodeTypeProxy::GetExtractedPair(node))));
538 #else
539  (void)hint;
540  return insert(std::move(node)).position;
541 #endif
542  }
543 
544  template<typename Iterator>
545  void insert(Iterator first, Iterator last)
546  {
547  pvInsertRange(first, last);
548  }
549 
550  void insert(std::initializer_list<value_type> values)
551  {
552  mHashMap.Insert(values.begin(), values.end());
553  }
554 
555 #ifdef MOMO_HAS_CONTAINERS_RANGES
556  template<std::ranges::input_range Range>
557  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
558  void insert_range(Range&& values)
559  {
560  pvInsertRange(std::ranges::begin(values), std::ranges::end(values));
561  }
562 #endif // MOMO_HAS_CONTAINERS_RANGES
563 
564  std::pair<iterator, bool> emplace()
565  {
566  return pvEmplace(nullptr, std::tuple<>(), std::tuple<>());
567  }
568 
570  {
571  return pvEmplace(hint, std::tuple<>(), std::tuple<>()).first;
572  }
573 
574  template<typename ValueArg>
575  std::pair<iterator, bool> emplace(ValueArg&& valueArg)
576  {
577  return pvEmplace(nullptr,
578  std::forward_as_tuple(std::get<0>(std::forward<ValueArg>(valueArg))),
579  std::forward_as_tuple(std::get<1>(std::forward<ValueArg>(valueArg))));
580  }
581 
582  template<typename ValueArg>
583  iterator emplace_hint(const_iterator hint, ValueArg&& valueArg)
584  {
585  return pvEmplace(hint,
586  std::forward_as_tuple(std::get<0>(std::forward<ValueArg>(valueArg))),
587  std::forward_as_tuple(std::get<1>(std::forward<ValueArg>(valueArg)))).first;
588  }
589 
590  template<typename KeyArg, typename MappedArg>
591  std::pair<iterator, bool> emplace(KeyArg&& keyArg, MappedArg&& mappedArg)
592  {
593  return pvEmplace(nullptr, std::forward_as_tuple(std::forward<KeyArg>(keyArg)),
594  std::forward_as_tuple(std::forward<MappedArg>(mappedArg)));
595  }
596 
597  template<typename KeyArg, typename MappedArg>
598  iterator emplace_hint(const_iterator hint, KeyArg&& keyArg, MappedArg&& mappedArg)
599  {
600  return pvEmplace(hint, std::forward_as_tuple(std::forward<KeyArg>(keyArg)),
601  std::forward_as_tuple(std::forward<MappedArg>(mappedArg))).first;
602  }
603 
604  template<typename... KeyArgs, typename... MappedArgs>
605  std::pair<iterator, bool> emplace(std::piecewise_construct_t,
606  std::tuple<KeyArgs...> keyArgs, std::tuple<MappedArgs...> mappedArgs)
607  {
608  return pvEmplace(nullptr, std::move(keyArgs), std::move(mappedArgs));
609  }
610 
611  template<typename... KeyArgs, typename... MappedArgs>
612  iterator emplace_hint(const_iterator hint, std::piecewise_construct_t,
613  std::tuple<KeyArgs...> keyArgs, std::tuple<MappedArgs...> mappedArgs)
614  {
615  return pvEmplace(hint, std::move(keyArgs), std::move(mappedArgs)).first;
616  }
617 
619  {
620  return IteratorProxy(mHashMap.Remove(ConstIteratorProxy::GetBaseIterator(where)));
621  }
622 
624  {
625  return erase(static_cast<const_iterator>(where));
626  }
627 
629  {
630  if (first == begin() && last == end())
631  {
632  clear();
633  return end();
634  }
635  if (first == last)
636  {
637  return IteratorProxy(mHashMap.MakeMutableIterator(
638  ConstIteratorProxy::GetBaseIterator(first)));
639  }
640  if (first != end() && std::next(first) == last)
641  return erase(first);
642  throw std::invalid_argument("invalid unordered_map erase arguments");
643  }
644 
646  {
647  return mHashMap.Remove(key) ? 1 : 0;
648  }
649 
650  template<typename ValueFilter>
651  friend size_type erase_if(unordered_map& cont, const ValueFilter& valueFilter)
652  {
653  auto pairFilter = [&valueFilter] (const key_type& key, const mapped_type& mapped)
654  { return valueFilter(const_reference(key, mapped)); };
655  return cont.mHashMap.Remove(pairFilter);
656  }
657 
659  {
660  return mHashMap[std::move(key)];
661  }
662 
664  {
665  return mHashMap[key];
666  }
667 
668  MOMO_FORCEINLINE const mapped_type& at(const key_type& key) const
669  {
670  const_iterator iter = find(key);
671  if (iter == end())
672  throw std::out_of_range("invalid unordered_map key");
673  return iter->second;
674  }
675 
677  {
678  iterator iter = find(key);
679  if (iter == end())
680  throw std::out_of_range("invalid unordered_map key");
681  return iter->second;
682  }
683 
684  template<typename... MappedArgs>
685  std::pair<iterator, bool> try_emplace(key_type&& key, MappedArgs&&... mappedArgs)
686  {
687  return pvEmplace(nullptr, std::forward_as_tuple(std::move(key)),
688  std::forward_as_tuple(std::forward<MappedArgs>(mappedArgs)...));
689  }
690 
691  template<typename... MappedArgs>
692  iterator try_emplace(const_iterator hint, key_type&& key, MappedArgs&&... mappedArgs)
693  {
694  return pvEmplace(hint, std::forward_as_tuple(std::move(key)),
695  std::forward_as_tuple(std::forward<MappedArgs>(mappedArgs)...)).first;
696  }
697 
698  template<typename... MappedArgs>
699  std::pair<iterator, bool> try_emplace(const key_type& key, MappedArgs&&... mappedArgs)
700  {
701  return pvEmplace(nullptr, std::forward_as_tuple(key),
702  std::forward_as_tuple(std::forward<MappedArgs>(mappedArgs)...));
703  }
704 
705  template<typename... MappedArgs>
706  iterator try_emplace(const_iterator hint, const key_type& key, MappedArgs&&... mappedArgs)
707  {
708  return pvEmplace(hint, std::forward_as_tuple(key),
709  std::forward_as_tuple(std::forward<MappedArgs>(mappedArgs)...)).first;
710  }
711 
712  template<typename MappedArg>
713  std::pair<iterator, bool> insert_or_assign(key_type&& key, MappedArg&& mappedArg)
714  {
715  return pvInsertOrAssign(nullptr, std::move(key), std::forward<MappedArg>(mappedArg));
716  }
717 
718  template<typename MappedArg>
719  iterator insert_or_assign(const_iterator hint, key_type&& key, MappedArg&& mappedArg)
720  {
721  return pvInsertOrAssign(hint, std::move(key), std::forward<MappedArg>(mappedArg)).first;
722  }
723 
724  template<typename MappedArg>
725  std::pair<iterator, bool> insert_or_assign(const key_type& key, MappedArg&& mappedArg)
726  {
727  return pvInsertOrAssign(nullptr, key, std::forward<MappedArg>(mappedArg));
728  }
729 
730  template<typename MappedArg>
731  iterator insert_or_assign(const_iterator hint, const key_type& key, MappedArg&& mappedArg)
732  {
733  return pvInsertOrAssign(hint, key, std::forward<MappedArg>(mappedArg)).first;
734  }
735 
737  {
738  return node_type(*this, where); // need RVO for exception safety
739  }
740 
742  {
743  const_iterator iter = find(key);
744  return (iter != end()) ? extract(iter) : node_type();
745  }
746 
747  template<typename Map>
748  void merge(Map&& map)
749  {
750  mHashMap.MergeFrom(map.get_nested_container());
751  }
752 
753  size_type max_bucket_count() const noexcept
754  {
756  //return momo::internal::HashSetBuckets<Bucket>::maxBucketCount;
757  }
758 
759  size_type bucket_count() const noexcept
760  {
761  return mHashMap.GetBucketCount();
762  }
763 
764  size_type bucket_size(size_type bucketIndex) const
765  {
766  return mHashMap.GetBucketBounds(bucketIndex).GetCount();
767  }
768 
770  {
771  return LocalIteratorProxy(mHashMap.GetBucketBounds(bucketIndex).GetBegin());
772  }
773 
775  {
776  return ConstLocalIteratorProxy(mHashMap.GetBucketBounds(bucketIndex).GetBegin());
777  }
778 
780  {
781  return LocalIteratorProxy(mHashMap.GetBucketBounds(bucketIndex).GetEnd());
782  }
783 
784  const_local_iterator end(size_type bucketIndex) const
785  {
786  return ConstLocalIteratorProxy(mHashMap.GetBucketBounds(bucketIndex).GetEnd());
787  }
788 
790  {
791  return begin(bucketIndex);
792  }
793 
795  {
796  return end(bucketIndex);
797  }
798 
799  size_type bucket(const key_type& key) const
800  {
801  return mHashMap.GetBucketIndex(key);
802  }
803 
804  float load_factor() const noexcept
805  {
806  size_t count = size();
807  size_t bucketCount = bucket_count();
808  if (count == 0 && bucketCount == 0)
809  return 0.0;
810  return static_cast<float>(count) / static_cast<float>(bucketCount);
811  }
812 
813  friend bool operator==(const unordered_map& left, const unordered_map& right)
814  {
815  if (left.size() != right.size())
816  return false;
817  for (const_reference ref : left)
818  {
819  const_iterator iter = right.find(ref.first);
820  if (iter == right.end())
821  return false;
822  if (!(iter->second == ref.second))
823  return false;
824  }
825  return true;
826  }
827 
828  friend bool operator!=(const unordered_map& left, const unordered_map& right)
829  {
830  return !(left == right);
831  }
832 
833 private:
834  static HashMap pvCreateMap(unordered_map&& right, const allocator_type& alloc)
835  {
836  if (right.get_allocator() == alloc)
837  return std::move(right.mHashMap);
838  HashMap hashMap(right.mHashMap.GetHashTraits(), MemManager(alloc));
839  hashMap.MergeFrom(right.mHashMap);
840  return hashMap;
841  }
842 
843  template<typename Hint, typename... KeyArgs, typename... MappedArgs>
844  std::pair<iterator, bool> pvEmplace(Hint hint, std::tuple<KeyArgs...>&& keyArgs,
845  std::tuple<MappedArgs...>&& mappedArgs)
846  {
847  typedef typename HashMap::KeyValueTraits
848  ::template ValueCreator<MappedArgs...> MappedCreator;
849  return pvInsert(hint, std::move(keyArgs),
850  MappedCreator(mHashMap.GetMemManager(), std::move(mappedArgs)));
851  }
852 
853  template<typename Hint, typename... KeyArgs, typename MappedCreator>
854  std::pair<iterator, bool> pvInsert(Hint /*hint*/, std::tuple<KeyArgs...>&& keyArgs,
855  MappedCreator&& mappedCreator)
856  {
857  MemManager& memManager = mHashMap.GetMemManager();
860  typedef typename KeyManager::template Creator<KeyArgs...> KeyCreator;
861  KeyBuffer keyBuffer;
862  KeyCreator(memManager, std::move(keyArgs))(keyBuffer.GetPtr());
863  key_type* keyPtr = keyBuffer.template GetPtr<true>();
864  try
865  {
866  typename HashMap::Position pos = mHashMap.Find(*keyPtr);
867  if (!!pos)
868  {
869  KeyManager::Destroy(memManager, *keyPtr);
870  keyPtr = nullptr;
871  return { IteratorProxy(pos), false };
872  }
873  auto valueCreator = [&memManager, &keyPtr, &mappedCreator]
874  (key_type* newKey, mapped_type* newMapped)
875  {
876  KeyManager::Relocate(memManager, *keyPtr, newKey);
877  keyPtr = nullptr;
878  try
879  {
880  std::forward<MappedCreator>(mappedCreator)(newMapped);
881  }
882  catch (...)
883  {
884  KeyManager::Destroy(memManager, *newKey);
885  throw;
886  }
887  };
888  typename HashMap::Position resPos = mHashMap.AddCrt(pos, valueCreator);
889  return { IteratorProxy(resPos), true };
890  }
891  catch (...)
892  {
893  if (keyPtr != nullptr)
894  KeyManager::Destroy(memManager, *keyPtr);
895  throw;
896  }
897  }
898 
899  template<typename Hint, typename RKey, typename MappedCreator,
900  typename Key = typename std::decay<RKey>::type>
902  std::pair<iterator, bool>> pvInsert(Hint /*hint*/, std::tuple<RKey>&& key,
903  MappedCreator&& mappedCreator)
904  {
905  typename HashMap::InsertResult res = mHashMap.InsertCrt(
906  std::forward<RKey>(std::get<0>(key)), std::forward<MappedCreator>(mappedCreator));
907  return { IteratorProxy(res.position), res.inserted };
908  }
909 
910 #ifdef MOMO_USE_UNORDERED_HINT_ITERATORS
911  template<typename... KeyArgs, typename MappedCreator>
912  std::pair<iterator, bool> pvInsert(const_iterator hint, std::tuple<KeyArgs...>&& keyArgs,
913  MappedCreator&& mappedCreator)
914  {
915  MemManager& memManager = mHashMap.GetMemManager();
917  typedef typename KeyManager::template Creator<KeyArgs...> KeyCreator;
918  auto valueCreator = [&memManager, &keyArgs, &mappedCreator]
919  (key_type* newKey, mapped_type* newMapped)
920  {
921  KeyCreator(memManager, std::move(keyArgs))(newKey);
922  try
923  {
924  std::forward<MappedCreator>(mappedCreator)(newMapped);
925  }
926  catch (...)
927  {
928  KeyManager::Destroy(memManager, *newKey);
929  throw;
930  }
931  };
932  typename HashMap::Position resPos = mHashMap.AddCrt(
933  ConstIteratorProxy::GetBaseIterator(hint), valueCreator);
934  return { IteratorProxy(resPos), true };
935  }
936 
937  template<typename RKey, typename MappedCreator,
938  typename Key = typename std::decay<RKey>::type>
940  std::pair<iterator, bool>> pvInsert(const_iterator hint, std::tuple<RKey>&& key,
941  MappedCreator&& mappedCreator)
942  {
943  typename HashMap::Position resPos = mHashMap.AddCrt(ConstIteratorProxy::GetBaseIterator(hint),
944  std::forward<RKey>(std::get<0>(key)), std::forward<MappedCreator>(mappedCreator));
945  return { IteratorProxy(resPos), true };
946  }
947 #endif // MOMO_USE_UNORDERED_HINT_ITERATORS
948 
949  template<typename Iterator, typename Sentinel>
951  void> pvInsertRange(Iterator begin, Sentinel end)
952  {
953  mHashMap.Insert(std::move(begin), std::move(end));
954  }
955 
956  template<typename Iterator, typename Sentinel>
958  void> pvInsertRange(Iterator begin, Sentinel end)
959  {
960  for (Iterator iter = std::move(begin); iter != end; ++iter)
961  insert(*iter);
962  }
963 
964  template<typename Hint, typename RKey, typename MappedArg>
965  std::pair<iterator, bool> pvInsertOrAssign(Hint hint, RKey&& key, MappedArg&& mappedArg)
966  {
967  std::pair<iterator, bool> res = pvEmplace(hint,
968  std::forward_as_tuple(std::forward<RKey>(key)),
969  std::forward_as_tuple(std::forward<MappedArg>(mappedArg)));
970  if (!res.second)
971  res.first->second = std::forward<MappedArg>(mappedArg);
972  return res;
973  }
974 
975 private:
976  HashMap mHashMap;
977 };
978 
988 template<typename TKey, typename TMapped,
989  typename THashFunc = HashCoder<TKey>,
990  typename TEqualFunc = std::equal_to<TKey>,
991  typename TAllocator = std::allocator<std::pair<const TKey, TMapped>>>
992 class unordered_map_open : public unordered_map<TKey, TMapped, THashFunc, TEqualFunc, TAllocator,
993  HashMap<TKey, TMapped, HashTraitsStd<TKey, THashFunc, TEqualFunc, HashBucketOpenDefault>,
994  MemManagerStd<TAllocator>>>
995 {
996 private:
997  typedef unordered_map<TKey, TMapped, THashFunc, TEqualFunc, TAllocator,
1000 
1001 public:
1002  using typename UnorderedMap::key_type;
1003  using typename UnorderedMap::mapped_type;
1004  using typename UnorderedMap::size_type;
1005  using typename UnorderedMap::value_type;
1006  using typename UnorderedMap::const_reference;
1007 
1008 public:
1009  using UnorderedMap::UnorderedMap;
1010 
1011  unordered_map_open() {} // clang 3.6
1012 
1013  unordered_map_open& operator=(std::initializer_list<value_type> values)
1014  {
1015  UnorderedMap::operator=(values);
1016  return *this;
1017  }
1018 
1019  friend void swap(unordered_map_open& left, unordered_map_open& right) noexcept
1020  {
1021  left.swap(right);
1022  }
1023 
1024  template<typename ValueFilter>
1025  friend size_type erase_if(unordered_map_open& cont, const ValueFilter& valueFilter)
1026  {
1027  auto pairFilter = [&valueFilter] (const key_type& key, const mapped_type& mapped)
1028  { return valueFilter(const_reference(key, mapped)); };
1029  return cont.get_nested_container().Remove(pairFilter);
1030  }
1031 };
1032 
1033 #ifdef MOMO_HAS_DEDUCTION_GUIDES
1034 
1035 #define MOMO_DECLARE_DEDUCTION_GUIDES(unordered_map) \
1036 template<typename Iterator, \
1037  typename Value = typename std::iterator_traits<Iterator>::value_type, \
1038  typename Key = std::decay_t<typename Value::first_type>, \
1039  typename Mapped = std::decay_t<typename Value::second_type>> \
1040 unordered_map(Iterator, Iterator) \
1041  -> unordered_map<Key, Mapped>; \
1042 template<typename Iterator, \
1043  typename Value = typename std::iterator_traits<Iterator>::value_type, \
1044  typename Key = std::decay_t<typename Value::first_type>, \
1045  typename Mapped = std::decay_t<typename Value::second_type>, \
1046  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1047  typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
1048 unordered_map(Iterator, Iterator, size_t, Allocator = Allocator()) \
1049  -> unordered_map<Key, Mapped, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
1050 template<typename Iterator, typename HashFunc, \
1051  typename Value = typename std::iterator_traits<Iterator>::value_type, \
1052  typename Key = std::decay_t<typename Value::first_type>, \
1053  typename Mapped = std::decay_t<typename Value::second_type>, \
1054  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1055  typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
1056 unordered_map(Iterator, Iterator, size_t, HashFunc, Allocator = Allocator()) \
1057  -> unordered_map<Key, Mapped, HashFunc, std::equal_to<Key>, Allocator>; \
1058 template<typename Iterator, typename HashFunc, typename EqualFunc, \
1059  typename Value = typename std::iterator_traits<Iterator>::value_type, \
1060  typename Key = std::decay_t<typename Value::first_type>, \
1061  typename Mapped = std::decay_t<typename Value::second_type>, \
1062  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1063  typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
1064 unordered_map(Iterator, Iterator, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
1065  -> unordered_map<Key, Mapped, HashFunc, EqualFunc, Allocator>; \
1066 template<typename CKey, typename Mapped, \
1067  typename Key = std::remove_const_t<CKey>> \
1068 unordered_map(std::initializer_list<std::pair<CKey, Mapped>>) \
1069  -> unordered_map<Key, Mapped>; \
1070 template<typename CKey, typename Mapped, \
1071  typename Key = std::remove_const_t<CKey>, \
1072  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1073  typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
1074 unordered_map(std::initializer_list<std::pair<CKey, Mapped>>, size_t, Allocator = Allocator()) \
1075  -> unordered_map<Key, Mapped, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
1076 template<typename CKey, typename Mapped, typename HashFunc, \
1077  typename Key = std::remove_const_t<CKey>, \
1078  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1079  typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
1080 unordered_map(std::initializer_list<std::pair<CKey, Mapped>>, size_t, HashFunc, Allocator = Allocator()) \
1081  -> unordered_map<Key, Mapped, HashFunc, std::equal_to<Key>, Allocator>; \
1082 template<typename CKey, typename Mapped, typename HashFunc, typename EqualFunc, \
1083  typename Key = std::remove_const_t<CKey>, \
1084  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1085  typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
1086 unordered_map(std::initializer_list<std::pair<CKey, Mapped>>, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
1087  -> unordered_map<Key, Mapped, HashFunc, EqualFunc, Allocator>;
1088 
1089 MOMO_DECLARE_DEDUCTION_GUIDES(unordered_map)
1090 MOMO_DECLARE_DEDUCTION_GUIDES(unordered_map_open)
1091 
1092 #undef MOMO_DECLARE_DEDUCTION_GUIDES
1093 
1094 #ifdef MOMO_HAS_CONTAINERS_RANGES
1095 
1096 #define MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_map) \
1097 template<std::ranges::input_range Range, \
1098  typename Value = std::ranges::range_value_t<Range>, \
1099  typename Key = std::decay_t<typename Value::first_type>, \
1100  typename Mapped = std::decay_t<typename Value::second_type>> \
1101 unordered_map(std::from_range_t, Range&&) \
1102  -> unordered_map<Key, Mapped>; \
1103 template<std::ranges::input_range Range, \
1104  typename Value = std::ranges::range_value_t<Range>, \
1105  typename Key = std::decay_t<typename Value::first_type>, \
1106  typename Mapped = std::decay_t<typename Value::second_type>, \
1107  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1108  typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
1109 unordered_map(std::from_range_t, Range&&, size_t, Allocator = Allocator()) \
1110  -> unordered_map<Key, Mapped, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
1111 template<std::ranges::input_range Range, typename HashFunc, \
1112  typename Value = std::ranges::range_value_t<Range>, \
1113  typename Key = std::decay_t<typename Value::first_type>, \
1114  typename Mapped = std::decay_t<typename Value::second_type>, \
1115  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1116  typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
1117 unordered_map(std::from_range_t, Range&&, size_t, HashFunc, Allocator = Allocator()) \
1118  -> unordered_map<Key, Mapped, HashFunc, std::equal_to<Key>, Allocator>; \
1119 template<std::ranges::input_range Range, typename HashFunc, typename EqualFunc, \
1120  typename Value = std::ranges::range_value_t<Range>, \
1121  typename Key = std::decay_t<typename Value::first_type>, \
1122  typename Mapped = std::decay_t<typename Value::second_type>, \
1123  typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
1124  typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
1125 unordered_map(std::from_range_t, Range&&, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
1126  -> unordered_map<Key, Mapped, HashFunc, EqualFunc, Allocator>;
1127 
1128 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_map)
1129 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_map_open)
1130 
1131 #undef MOMO_DECLARE_DEDUCTION_GUIDES_RANGES
1132 
1133 #endif // MOMO_HAS_CONTAINERS_RANGES
1134 
1135 #endif // MOMO_HAS_DEDUCTION_GUIDES
1136 
1137 } // namespace stdish
1138 
1139 } // namespace momo
1140 
1141 #endif // MOMO_INCLUDE_GUARD_STDISH_UNORDERED_MAP
momo::internal::ObjectManager
Definition: ObjectManager.h:212
momo::stdish::unordered_map::unordered_map
unordered_map(const unordered_map &right)
Definition: unordered_map.h:271
momo::internal::InsertResult::position
Position position
Definition: IteratorUtility.h:168
momo::stdish::unordered_map::end
iterator end() noexcept
Definition: unordered_map.h:354
momo::internal::UIntConst::maxSize
static const size_t maxSize
Definition: Utility.h:447
momo::stdish::unordered_map::size_type
size_t size_type
Definition: unordered_map.h:79
momo::stdish::unordered_map::get_allocator
allocator_type get_allocator() const noexcept
Definition: unordered_map.h:397
momo::internal::HashDerivedIterator::Reference
TReference< typename BaseIterator::Reference > Reference
Definition: IteratorUtility.h:381
momo::stdish::unordered_map::emplace
std::pair< iterator, bool > emplace(std::piecewise_construct_t, std::tuple< KeyArgs... > keyArgs, std::tuple< MappedArgs... > mappedArgs)
Definition: unordered_map.h:605
momo::stdish::unordered_map::nested_container_type
HashMap nested_container_type
Definition: unordered_map.h:77
momo::stdish::map
momo::stdish::map is similar to std::map, but much more efficient in memory usage....
Definition: map.h:837
momo::stdish::unordered_map::operator[]
MOMO_FORCEINLINE HashMap::ValueReferenceCKey operator[](const key_type &key)
Definition: unordered_map.h:663
momo::stdish::unordered_map::max_load_factor
float max_load_factor() const noexcept
Definition: unordered_map.h:369
momo::internal::HashMapBucketBounds::Iterator
HashMapIterator< typename HashSetBucketBounds::Iterator, isConst > Iterator
Definition: HashMap.h:219
momo::stdish::unordered_map::begin
local_iterator begin(size_type bucketIndex)
Definition: unordered_map.h:769
momo::stdish::unordered_map::insert
momo::internal::EnableIf< std::is_constructible< value_type, ValueArg && >::value, std::pair< iterator, bool > > insert(ValueArg &&valueArg)
Definition: unordered_map.h:509
momo::stdish::unordered_map::insert_or_assign
iterator insert_or_assign(const_iterator hint, key_type &&key, MappedArg &&mappedArg)
Definition: unordered_map.h:719
momo::stdish::unordered_map::swap
friend void swap(unordered_map &left, unordered_map &right) noexcept
Definition: unordered_map.h:324
momo::stdish::unordered_map::emplace_hint
iterator emplace_hint(const_iterator hint, std::piecewise_construct_t, std::tuple< KeyArgs... > keyArgs, std::tuple< MappedArgs... > mappedArgs)
Definition: unordered_map.h:612
momo::stdish::unordered_map::unordered_map
unordered_map(Iterator first, Iterator last, size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:185
momo::HashMap::ValueReferenceCKey
ValueReferencer::template ValueReference< const Key & > ValueReferenceCKey
Definition: HashMap.h:406
momo::stdish::unordered_map::unordered_map
unordered_map(std::initializer_list< momo::internal::Identity< value_type >> values)
Definition: unordered_map.h:200
set_map_utility.h
momo::stdish::unordered_map::get_nested_container
const nested_container_type & get_nested_container() const noexcept
Definition: unordered_map.h:329
momo::stdish::unordered_map::unordered_map
unordered_map(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:205
momo::stdish::unordered_map::iterator
momo::internal::HashDerivedIterator< HashMapIterator, momo::internal::MapReferenceStd > iterator
Definition: unordered_map.h:85
momo::stdish::unordered_map::emplace_hint
iterator emplace_hint(const_iterator hint, KeyArg &&keyArg, MappedArg &&mappedArg)
Definition: unordered_map.h:598
momo::stdish::unordered_map::erase
iterator erase(const_iterator first, const_iterator last)
Definition: unordered_map.h:628
momo::stdish::unordered_map::insert_return_type
internal::insert_return_type< iterator, node_type > insert_return_type
Definition: unordered_map.h:97
momo::stdish::internal::insert_return_type
Definition: set_map_utility.h:194
momo::stdish::unordered_map_open
momo::stdish::unordered_map_open is similar to std::unordered_map, but much more efficient in operati...
Definition: unordered_map.h:995
momo::HashMap::InsertResult
internal::InsertResult< Position > InsertResult
Definition: HashMap.h:392
momo::internal::UIntMath::Log2
static UInt Log2(UInt value) noexcept
Definition: Utility.h:385
momo::internal::HashMapIterator
Definition: HashMap.h:33
momo::stdish::unordered_map::try_emplace
iterator try_emplace(const_iterator hint, const key_type &key, MappedArgs &&... mappedArgs)
Definition: unordered_map.h:706
momo::stdish::unordered_map::equal_range
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, std::pair< iterator, iterator > > equal_range(const KeyArg &key)
Definition: unordered_map.h:502
momo::stdish::unordered_map::try_emplace
iterator try_emplace(const_iterator hint, key_type &&key, MappedArgs &&... mappedArgs)
Definition: unordered_map.h:692
momo::stdish::unordered_map::erase
iterator erase(iterator where)
Definition: unordered_map.h:623
momo::stdish::unordered_map::value_type
std::pair< const key_type, mapped_type > value_type
Definition: unordered_map.h:82
momo::stdish::unordered_map::key_eq
key_equal key_eq() const
Definition: unordered_map.h:392
momo::HashMap
Definition: HashMap.h:363
momo::MemManagerStd
MemManagerStd uses allocator<unsigned char>::allocate and deallocate
Definition: MemManager.h:177
momo::stdish::unordered_map::swap
void swap(unordered_map &right) noexcept
Definition: unordered_map.h:317
momo::stdish::unordered_map::cend
const_local_iterator cend(size_type bucketIndex) const
Definition: unordered_map.h:794
momo::stdish::unordered_map_open::const_reference
const_iterator::Reference const_reference
Definition: unordered_map.h:89
momo::stdish::unordered_map::insert_or_assign
iterator insert_or_assign(const_iterator hint, const key_type &key, MappedArg &&mappedArg)
Definition: unordered_map.h:731
momo::stdish::unordered_map_open::mapped_type
TMapped mapped_type
Definition: unordered_map.h:72
momo::stdish::unordered_map::load_factor
float load_factor() const noexcept
Definition: unordered_map.h:804
momo::stdish::unordered_map::begin
iterator begin() noexcept
Definition: unordered_map.h:344
momo::stdish::unordered_map_open::operator=
unordered_map_open & operator=(std::initializer_list< value_type > values)
Definition: unordered_map.h:1013
momo::stdish::unordered_map::equal_range
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, std::pair< const_iterator, const_iterator > > equal_range(const KeyArg &key) const
Definition: unordered_map.h:495
momo::stdish::unordered_map::operator=
unordered_map & operator=(const unordered_map &right)
Definition: unordered_map.h:297
momo::stdish::unordered_map::emplace_hint
iterator emplace_hint(const_iterator hint)
Definition: unordered_map.h:569
momo::internal::InsertResult
Definition: IteratorUtility.h:136
momo::stdish::unordered_map::find
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, iterator > find(const KeyArg &key)
Definition: unordered_map.h:454
momo::stdish::internal::map_node_handle::MapExtractedPair
TMapExtractedPair MapExtractedPair
Definition: set_map_utility.h:105
momo::stdish::unordered_map::const_reference
const_iterator::Reference const_reference
Definition: unordered_map.h:89
momo::stdish::unordered_map::merge
void merge(Map &&map)
Definition: unordered_map.h:748
momo::stdish::unordered_map::at
MOMO_FORCEINLINE mapped_type & at(const key_type &key)
Definition: unordered_map.h:676
momo::stdish::internal::map_node_handle
Definition: set_map_utility.h:103
momo::stdish::unordered_map::unordered_map
unordered_map(Iterator first, Iterator last, size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:177
momo::stdish::unordered_map::unordered_map
unordered_map(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:217
momo::internal::EnableIf
typename std::enable_if< value, Type >::type EnableIf
Definition: Utility.h:198
momo::stdish::unordered_map::contains
MOMO_FORCEINLINE bool contains(const key_type &key) const
Definition: unordered_map.h:471
momo::stdish::unordered_map::bucket_count
size_type bucket_count() const noexcept
Definition: unordered_map.h:759
momo::stdish::unordered_map::end
local_iterator end(size_type bucketIndex)
Definition: unordered_map.h:779
momo::stdish::unordered_map::~unordered_map
~unordered_map()=default
momo::stdish::unordered_map::unordered_map
unordered_map(size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:164
momo::stdish::unordered_map::insert
momo::internal::EnableIf< std::is_constructible< value_type, ValueArg && >::value, iterator > insert(const_iterator hint, ValueArg &&valueArg)
Definition: unordered_map.h:516
momo
Definition: Array.h:26
momo::stdish::unordered_map::unordered_map
unordered_map(const allocator_type &alloc)
Definition: unordered_map.h:148
momo::stdish::unordered_map::operator[]
MOMO_FORCEINLINE HashMap::ValueReferenceRKey operator[](key_type &&key)
Definition: unordered_map.h:658
momo::stdish::unordered_map
momo::stdish::unordered_map is similar to std::unordered_map, but much more efficient in memory usage...
Definition: unordered_map.h:62
momo::stdish::unordered_map::unordered_map
unordered_map(const unordered_map &right, const momo::internal::Identity< allocator_type > &alloc)
Definition: unordered_map.h:276
momo::stdish::unordered_map_open::key_type
TKey key_type
Definition: unordered_map.h:71
momo::stdish::unordered_map::emplace
std::pair< iterator, bool > emplace(KeyArg &&keyArg, MappedArg &&mappedArg)
Definition: unordered_map.h:591
momo::stdish::unordered_map::empty
MOMO_NODISCARD bool empty() const noexcept
Definition: unordered_map.h:412
momo::stdish::unordered_map::operator==
friend bool operator==(const unordered_map &left, const unordered_map &right)
Definition: unordered_map.h:813
momo::stdish::unordered_map::unordered_map
unordered_map(Iterator first, Iterator last)
Definition: unordered_map.h:171
momo::internal::IteratorPointer
Definition: IteratorUtility.h:264
momo::stdish::unordered_map::bucket_size
size_type bucket_size(size_type bucketIndex) const
Definition: unordered_map.h:764
momo::internal::InsertResult::inserted
bool inserted
Definition: IteratorUtility.h:171
momo::stdish::unordered_map::unordered_map
unordered_map(unordered_map &&right) noexcept
Definition: unordered_map.h:260
momo::internal::Identity
EnableIf< true, Type > Identity
Definition: Utility.h:201
momo::stdish::unordered_map::difference_type
ptrdiff_t difference_type
Definition: unordered_map.h:80
momo::stdish::unordered_map::max_bucket_count
size_type max_bucket_count() const noexcept
Definition: unordered_map.h:753
momo::stdish::unordered_map::unordered_map
unordered_map(size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:153
momo::stdish::unordered_map_open::size_type
size_t size_type
Definition: unordered_map.h:79
momo::internal::HashDerivedIterator::BaseIterator
TBaseIterator BaseIterator
Definition: IteratorUtility.h:378
momo::stdish::unordered_map::max_load_factor
void max_load_factor(float maxLoadFactor)
Definition: unordered_map.h:374
momo::stdish::unordered_map::try_emplace
std::pair< iterator, bool > try_emplace(key_type &&key, MappedArgs &&... mappedArgs)
Definition: unordered_map.h:685
momo::stdish::unordered_map::cbegin
const_local_iterator cbegin(size_type bucketIndex) const
Definition: unordered_map.h:789
momo::HashMap::HashTraits
THashTraits HashTraits
Definition: HashMap.h:367
momo::stdish::unordered_map::begin
const_iterator begin() const noexcept
Definition: unordered_map.h:339
momo::stdish::unordered_map::operator=
unordered_map & operator=(std::initializer_list< value_type > values)
Definition: unordered_map.h:309
momo::stdish::unordered_map::reference
iterator::Reference reference
Definition: unordered_map.h:88
momo::stdish::unordered_map::node_type
internal::map_node_handle< typename HashMap::ExtractedPair > node_type
Definition: unordered_map.h:96
MOMO_DECLARE_PROXY_CONSTRUCTOR
#define MOMO_DECLARE_PROXY_CONSTRUCTOR(Object)
Definition: Utility.h:107
momo::stdish::unordered_map::at
MOMO_FORCEINLINE const mapped_type & at(const key_type &key) const
Definition: unordered_map.h:668
momo::stdish::unordered_map::insert
void insert(Iterator first, Iterator last)
Definition: unordered_map.h:545
momo::HashMap::bucketMaxItemCount
static const size_t bucketMaxItemCount
Definition: HashMap.h:399
momo::stdish::unordered_map_open::swap
friend void swap(unordered_map_open &left, unordered_map_open &right) noexcept
Definition: unordered_map.h:1019
momo::stdish::unordered_map::erase
iterator erase(const_iterator where)
Definition: unordered_map.h:618
momo::stdish::unordered_map::contains
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, bool > contains(const KeyArg &key) const
Definition: unordered_map.h:478
momo::stdish::unordered_map::count
MOMO_FORCEINLINE size_type count(const key_type &key) const
Definition: unordered_map.h:459
momo::stdish::unordered_map::begin
const_local_iterator begin(size_type bucketIndex) const
Definition: unordered_map.h:774
momo::stdish::unordered_map::operator!=
friend bool operator!=(const unordered_map &left, const unordered_map &right)
Definition: unordered_map.h:828
momo::stdish::unordered_map::insert
void insert(std::initializer_list< value_type > values)
Definition: unordered_map.h:550
momo::internal::HashDerivedIterator
Definition: IteratorUtility.h:376
momo::stdish::unordered_map::emplace_hint
iterator emplace_hint(const_iterator hint, ValueArg &&valueArg)
Definition: unordered_map.h:583
momo::stdish::unordered_map::bucket
size_type bucket(const key_type &key) const
Definition: unordered_map.h:799
momo::stdish::unordered_map::hash_function
hasher hash_function() const
Definition: unordered_map.h:387
momo::stdish::unordered_map::erase_if
friend size_type erase_if(unordered_map &cont, const ValueFilter &valueFilter)
Definition: unordered_map.h:651
momo::stdish::unordered_map::hasher
THashFunc hasher
Definition: unordered_map.h:73
momo::stdish::unordered_map::local_iterator
momo::internal::HashDerivedIterator< typename HashMap::BucketBounds::Iterator, momo::internal::MapReferenceStd > local_iterator
Definition: unordered_map.h:100
momo::stdish::unordered_map::find
MOMO_FORCEINLINE const_iterator find(const key_type &key) const
Definition: unordered_map.h:435
momo::internal::ObjectBuffer
Definition: ObjectManager.h:161
momo::stdish::unordered_map::emplace
std::pair< iterator, bool > emplace()
Definition: unordered_map.h:564
momo::stdish::unordered_map::key_type
TKey key_type
Definition: unordered_map.h:71
momo::stdish::unordered_map::unordered_map
unordered_map(Iterator first, Iterator last, size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:193
momo::stdish::unordered_map::end
const_iterator end() const noexcept
Definition: unordered_map.h:349
momo::stdish::unordered_map::equal_range
MOMO_FORCEINLINE std::pair< iterator, iterator > equal_range(const key_type &key)
Definition: unordered_map.h:488
momo::stdish::unordered_map::count
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, size_type > count(const KeyArg &key) const
Definition: unordered_map.h:466
std
Definition: ArrayUtility.h:308
momo::stdish::unordered_map::const_iterator
iterator::ConstIterator const_iterator
Definition: unordered_map.h:86
momo::stdish::unordered_map::clear
void clear() noexcept
Definition: unordered_map.h:417
MOMO_FORCEINLINE
#define MOMO_FORCEINLINE
Definition: UserSettings.h:114
momo::stdish::unordered_map::find
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, const_iterator > find(const KeyArg &key) const
Definition: unordered_map.h:447
momo::stdish::unordered_map::cbegin
const_iterator cbegin() const noexcept
Definition: unordered_map.h:359
momo::stdish::unordered_map::unordered_map
unordered_map()
Definition: unordered_map.h:144
momo::stdish::unordered_map::equal_range
MOMO_FORCEINLINE std::pair< const_iterator, const_iterator > equal_range(const key_type &key) const
Definition: unordered_map.h:483
momo::stdish::unordered_map::extract
node_type extract(const_iterator where)
Definition: unordered_map.h:736
momo::stdish::unordered_map::size
size_type size() const noexcept
Definition: unordered_map.h:407
momo::stdish::unordered_map::insert_or_assign
std::pair< iterator, bool > insert_or_assign(key_type &&key, MappedArg &&mappedArg)
Definition: unordered_map.h:713
momo::stdish::unordered_map::mapped_type
TMapped mapped_type
Definition: unordered_map.h:72
momo::HashMap::Position
internal::HashMapPosition< HashSetConstPosition > Position
Definition: HashMap.h:389
momo::stdish::unordered_map::try_emplace
std::pair< iterator, bool > try_emplace(const key_type &key, MappedArgs &&... mappedArgs)
Definition: unordered_map.h:699
momo::stdish::unordered_map_open::erase_if
friend size_type erase_if(unordered_map_open &cont, const ValueFilter &valueFilter)
Definition: unordered_map.h:1025
momo::stdish::unordered_map::operator=
unordered_map & operator=(unordered_map &&right) noexcept(std::is_empty< allocator_type >::value||std::allocator_traits< allocator_type >::propagate_on_container_move_assignment::value)
Definition: unordered_map.h:283
momo::stdish::unordered_map::extract
node_type extract(const key_type &key)
Definition: unordered_map.h:741
momo::stdish::unordered_map::unordered_map
unordered_map(unordered_map &&right, const momo::internal::Identity< allocator_type > &alloc) noexcept(std::is_empty< allocator_type >::value)
Definition: unordered_map.h:265
momo::stdish::unordered_map::unordered_map
unordered_map(size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:158
momo::stdish::unordered_map::end
const_local_iterator end(size_type bucketIndex) const
Definition: unordered_map.h:784
momo::HashMap::MemManager
TMemManager MemManager
Definition: HashMap.h:368
momo::HashMap::ValueReferenceRKey
ValueReferencer::template ValueReference< Key && > ValueReferenceRKey
Definition: HashMap.h:405
momo::stdish::unordered_map::get_nested_container
nested_container_type & get_nested_container() noexcept
Definition: unordered_map.h:334
momo::stdish::unordered_map::const_local_iterator
local_iterator::ConstIterator const_local_iterator
Definition: unordered_map.h:101
momo::stdish::unordered_map::allocator_type
TAllocator allocator_type
Definition: unordered_map.h:75
momo::stdish::unordered_map::insert_or_assign
std::pair< iterator, bool > insert_or_assign(const key_type &key, MappedArg &&mappedArg)
Definition: unordered_map.h:725
momo::stdish::unordered_map::reserve
void reserve(size_type count)
Definition: unordered_map.h:430
momo::stdish::unordered_map::erase
size_type erase(const key_type &key)
Definition: unordered_map.h:645
momo::stdish::unordered_map::emplace
std::pair< iterator, bool > emplace(ValueArg &&valueArg)
Definition: unordered_map.h:575
momo::stdish::unordered_map::unordered_map
unordered_map(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_map.h:211
momo::stdish::unordered_map::pointer
iterator::Pointer pointer
Definition: unordered_map.h:91
MOMO_ASSERT
#define MOMO_ASSERT(expr)
Definition: UserSettings.h:162
momo::stdish::unordered_map::const_pointer
const_iterator::Pointer const_pointer
Definition: unordered_map.h:92
MOMO_DECLARE_PROXY_FUNCTION
#define MOMO_DECLARE_PROXY_FUNCTION(Object, Func, Result)
Definition: Utility.h:116
momo::stdish::unordered_map::insert
insert_return_type insert(node_type &&node)
Definition: unordered_map.h:521
MOMO_NODISCARD
#define MOMO_NODISCARD
Definition: UserSettings.h:203
momo::stdish::unordered_map::cend
const_iterator cend() const noexcept
Definition: unordered_map.h:364
momo::stdish::unordered_map::find
MOMO_FORCEINLINE iterator find(const key_type &key)
Definition: unordered_map.h:440
momo::stdish::unordered_map::rehash
void rehash(size_type bucketCount)
Definition: unordered_map.h:422
momo::stdish::unordered_map::insert
iterator insert(const_iterator hint, node_type &&node)
Definition: unordered_map.h:531
momo::stdish::unordered_map::key_equal
TEqualFunc key_equal
Definition: unordered_map.h:74
momo::stdish::unordered_map::max_size
size_type max_size() const noexcept
Definition: unordered_map.h:402
momo::stdish::unordered_map_open::unordered_map_open
unordered_map_open()
Definition: unordered_map.h:1011
momo::internal::MapReferenceStd
Definition: MapUtility.h:68