Go to the documentation of this file.
17 #ifndef MOMO_INCLUDE_GUARD_STDISH_UNORDERED_MULTIMAP
18 #define MOMO_INCLUDE_GUARD_STDISH_UNORDERED_MULTIMAP
20 #include "../HashMultiMap.h"
58 template<
typename TKey,
typename TMapped,
59 typename THashFunc = HashCoder<TKey>,
60 typename TEqualFunc = std::equal_to<TKey>,
61 typename TAllocator = std::allocator<std::pair<const TKey, TMapped>>,
62 typename THashMultiMap = HashMultiMap<TKey, TMapped, HashTraitsStd<TKey, THashFunc, TEqualFunc>,
63 MemManagerStd<TAllocator>>>
67 typedef THashMultiMap HashMultiMap;
83 typedef std::pair<const key_type, mapped_type>
value_type;
103 template<
typename KeyArg>
104 struct IsValidKeyArg :
public HashTraits::template IsValidKeyArg<KeyArg>
116 struct IteratorProxy :
public iterator
128 : mHashMultiMap(HashTraits(), MemManager(alloc))
134 : mHashMultiMap(HashTraits(bucketCount), MemManager(alloc))
140 : mHashMultiMap(HashTraits(bucketCount, hashFunc), MemManager(alloc))
146 : mHashMultiMap(HashTraits(bucketCount, hashFunc, equalFunc), MemManager(alloc))
150 template<
typename Iterator>
156 template<
typename Iterator>
164 template<
typename Iterator>
172 template<
typename Iterator>
205 #ifdef MOMO_HAS_CONTAINERS_RANGES
206 template<std::ranges::input_range Range>
207 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
210 insert_range(std::forward<Range>(values));
213 template<std::ranges::input_range Range>
214 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
219 insert_range(std::forward<Range>(values));
222 template<std::ranges::input_range Range>
223 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
228 insert_range(std::forward<Range>(values));
231 template<std::ranges::input_range Range>
232 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
238 insert_range(std::forward<Range>(values));
240 #endif // MOMO_HAS_CONTAINERS_RANGES
243 : mHashMultiMap(std::move(right.mHashMultiMap))
249 noexcept(std::is_empty<allocator_type>::value)
250 : mHashMultiMap(pvCreateMultiMap(
std::move(right), alloc))
255 : mHashMultiMap(right.mHashMultiMap)
261 : mHashMultiMap(right.mHashMultiMap, MemManager(alloc))
268 noexcept(std::is_empty<allocator_type>::value ||
269 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value)
273 bool propagate = std::is_empty<allocator_type>::value ||
274 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value;
276 mHashMultiMap = pvCreateMultiMap(std::move(right), alloc);
285 bool propagate = std::is_empty<allocator_type>::value ||
286 std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value;
288 mHashMultiMap = HashMultiMap(right.mHashMultiMap, MemManager(alloc));
295 HashMultiMap hashMultiMap(mHashMultiMap.GetHashTraits(), MemManager(
get_allocator()));
296 hashMultiMap.Add(values.begin(), values.end());
297 mHashMultiMap = std::move(hashMultiMap);
303 MOMO_ASSERT(std::allocator_traits<allocator_type>::propagate_on_container_swap::value
305 mHashMultiMap.Swap(right.mHashMultiMap);
315 return mHashMultiMap;
320 return mHashMultiMap;
325 return ConstIteratorProxy(mHashMultiMap.GetBegin());
330 return IteratorProxy(mHashMultiMap.GetBegin());
335 return ConstIteratorProxy(mHashMultiMap.GetEnd());
340 return IteratorProxy(mHashMultiMap.GetEnd());
358 return mHashMultiMap.GetHashTraits().GetHashFunc();
363 return mHashMultiMap.GetHashTraits().GetEqualFunc();
368 return allocator_type(mHashMultiMap.GetMemManager().GetByteAllocator());
373 return std::allocator_traits<allocator_type>::max_size(
get_allocator());
378 return mHashMultiMap.GetCount();
383 return mHashMultiMap.IsEmpty();
388 mHashMultiMap.Clear();
404 template<
typename KeyArg>
411 template<
typename KeyArg>
421 return !!keyIter ? keyIter->GetCount() : 0;
424 template<
typename KeyArg>
429 return !!keyIter ? keyIter->GetCount() : 0;
434 return count(key) > 0;
437 template<
typename KeyArg>
441 return count(key) > 0;
446 return pvEqualRange<const_iterator, ConstIteratorProxy>(mHashMultiMap,
447 mHashMultiMap.Find(key));
452 return pvEqualRange<iterator, IteratorProxy>(mHashMultiMap, mHashMultiMap.Find(key));
455 template<
typename KeyArg>
457 std::pair<const_iterator, const_iterator>>
equal_range(
const KeyArg& key)
const
459 return pvEqualRange<const_iterator, ConstIteratorProxy>(mHashMultiMap,
460 mHashMultiMap.Find(key));
463 template<
typename KeyArg>
467 return pvEqualRange<iterator, IteratorProxy>(mHashMultiMap, mHashMultiMap.Find(key));
470 template<
typename ValueArg = std::pair<key_type, mapped_type>>
474 return emplace(std::forward<ValueArg>(valueArg));
477 template<
typename ValueArg = std::pair<key_type, mapped_type>>
481 return insert(std::forward<ValueArg>(valueArg));
484 template<
typename Iterator>
485 void insert(Iterator first, Iterator last)
487 pvInsertRange(first, last);
490 void insert(std::initializer_list<value_type> values)
492 mHashMultiMap.Add(values.begin(), values.end());
495 #ifdef MOMO_HAS_CONTAINERS_RANGES
496 template<std::ranges::input_range Range>
497 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
498 void insert_range(Range&& values)
500 pvInsertRange(std::ranges::begin(values), std::ranges::end(values));
502 #endif // MOMO_HAS_CONTAINERS_RANGES
506 return pvEmplace(std::tuple<>(), std::tuple<>());
514 template<
typename ValueArg>
517 return pvEmplace(std::forward_as_tuple(std::get<0>(std::forward<ValueArg>(valueArg))),
518 std::forward_as_tuple(std::get<1>(std::forward<ValueArg>(valueArg))));
521 template<
typename ValueArg>
524 return emplace(std::forward<ValueArg>(valueArg));
527 template<
typename KeyArg,
typename MappedArg>
530 return pvEmplace(std::forward_as_tuple(std::forward<KeyArg>(keyArg)),
531 std::forward_as_tuple(std::forward<MappedArg>(mappedArg)));
534 template<
typename KeyArg,
typename MappedArg>
537 return emplace(std::forward<KeyArg>(keyArg), std::forward<MappedArg>(mappedArg));
540 template<
typename... KeyArgs,
typename... MappedArgs>
542 std::tuple<KeyArgs...> keyArgs, std::tuple<MappedArgs...> mappedArgs)
544 return pvEmplace(std::move(keyArgs), std::move(mappedArgs));
547 template<
typename... KeyArgs,
typename... MappedArgs>
549 std::tuple<KeyArgs...> keyArgs, std::tuple<MappedArgs...> mappedArgs)
551 return pvEmplace(std::move(keyArgs), std::move(mappedArgs));
558 if (keyIter->GetCount() == 1)
559 return IteratorProxy(mHashMultiMap.MakeIterator(mHashMultiMap.RemoveKey(keyIter)));
561 return IteratorProxy(mHashMultiMap.Remove(iter));
571 if (first ==
begin() && last ==
end())
578 return IteratorProxy(mHashMultiMap.MakeMutableIterator(
579 ConstIteratorProxy::GetBaseIterator(first)));
583 if (std::next(first) == last)
586 ConstIteratorProxy::GetBaseIterator(first).GetKeyIterator();
587 if (last == ConstIteratorProxy(mHashMultiMap.MakeIterator(keyIter, keyIter->GetCount())))
588 return IteratorProxy(mHashMultiMap.MakeIterator(mHashMultiMap.RemoveKey(keyIter)));
590 throw std::invalid_argument(
"invalid unordered_multimap erase arguments");
595 return mHashMultiMap.RemoveKey(key);
598 template<
typename ValueFilter>
603 return cont.mHashMultiMap.Remove(pairFilter);
626 if (left.mHashMultiMap.GetKeyCount() != right.mHashMultiMap.GetKeyCount())
628 if (left.mHashMultiMap.GetCount() != right.mHashMultiMap.GetCount())
631 for (
typename ConstKeyIterator::Reference ref : left.mHashMultiMap.GetKeyBounds())
633 if (ref.GetCount() == 0)
635 ConstKeyIterator rightKeyIter = right.mHashMultiMap.Find(ref.key);
638 if (ref.GetCount() != rightKeyIter->GetCount())
640 if (!std::is_permutation(ref.GetBegin(), ref.GetEnd(), rightKeyIter->GetBegin()))
648 return !(left == right);
654 if (right.get_allocator() == alloc)
655 return std::move(right.mHashMultiMap);
656 HashMultiMap hashMultiMap(right.mHashMultiMap.GetHashTraits(), MemManager(alloc));
658 hashMultiMap.Add(ref.first, std::move(ref.second));
663 template<
typename Iterator,
typename IteratorProxy,
typename HashMultiMap,
typename KeyIterator>
664 static std::pair<Iterator, Iterator> pvEqualRange(
HashMultiMap& hashMultiMap,
667 Iterator
end = IteratorProxy(hashMultiMap.
GetEnd());
670 size_t count = keyIter->GetCount();
673 Iterator first = IteratorProxy(hashMultiMap.
MakeIterator(keyIter, 0));
675 return { first, last };
678 template<
typename... KeyArgs,
typename... MappedArgs>
679 iterator pvEmplace(std::tuple<KeyArgs...>&& keyArgs, std::tuple<MappedArgs...>&& mappedArgs)
681 typedef typename HashMultiMap::KeyValueTraits
682 ::template ValueCreator<MappedArgs...> MappedCreator;
683 return pvInsert(std::move(keyArgs),
684 MappedCreator(mHashMultiMap.GetMemManager(), std::move(mappedArgs)));
687 template<
typename... KeyArgs,
typename MappedCreator>
688 iterator pvInsert(std::tuple<KeyArgs...>&& keyArgs, MappedCreator&& mappedCreator)
690 MemManager& memManager = mHashMultiMap.GetMemManager();
693 typedef typename KeyManager::template Creator<KeyArgs...> KeyCreator;
695 KeyCreator(memManager, std::move(keyArgs))(keyBuffer.GetPtr());
699 resIter = pvInsert(std::forward_as_tuple(std::move(keyBuffer.Get())),
700 std::forward<MappedCreator>(mappedCreator));
704 KeyManager::Destroy(memManager, keyBuffer.Get());
707 KeyManager::Destroy(memManager, keyBuffer.Get());
711 template<
typename RKey,
typename MappedCreator,
712 typename Key =
typename std::decay<RKey>::type>
714 iterator> pvInsert(std::tuple<RKey>&& key, MappedCreator&& mappedCreator)
716 return IteratorProxy(mHashMultiMap.AddCrt(
717 std::forward<RKey>(std::get<0>(key)), std::forward<MappedCreator>(mappedCreator)));
720 template<
typename Iterator,
typename Sentinel>
722 void> pvInsertRange(Iterator
begin, Sentinel
end)
724 mHashMultiMap.Add(std::move(
begin), std::move(
end));
727 template<
typename Iterator,
typename Sentinel>
729 void> pvInsertRange(Iterator
begin, Sentinel
end)
731 for (Iterator iter = std::move(
begin); iter !=
end; ++iter)
736 HashMultiMap mHashMultiMap;
748 template<
typename TKey,
typename TMapped,
749 typename THashFunc = HashCoder<TKey>,
750 typename TEqualFunc = std::equal_to<TKey>,
751 typename TAllocator = std::allocator<std::pair<const TKey, TMapped>>>
753 HashMultiMap<TKey, TMapped, HashTraitsStd<TKey, THashFunc, TEqualFunc, HashBucketOpenDefault>,
754 MemManagerStd<TAllocator>>>
769 using UnorderedMultiMap::UnorderedMultiMap;
784 template<
typename ValueFilter>
789 return cont.get_nested_container().Remove(pairFilter);
793 #ifdef MOMO_HAS_DEDUCTION_GUIDES
795 #define MOMO_DECLARE_DEDUCTION_GUIDES(unordered_multimap) \
796 template<typename Iterator, \
797 typename Value = typename std::iterator_traits<Iterator>::value_type, \
798 typename Key = std::decay_t<typename Value::first_type>, \
799 typename Mapped = std::decay_t<typename Value::second_type>> \
800 unordered_multimap(Iterator, Iterator) \
801 -> unordered_multimap<Key, Mapped>; \
802 template<typename Iterator, \
803 typename Value = typename std::iterator_traits<Iterator>::value_type, \
804 typename Key = std::decay_t<typename Value::first_type>, \
805 typename Mapped = std::decay_t<typename Value::second_type>, \
806 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
807 typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
808 unordered_multimap(Iterator, Iterator, size_t, Allocator = Allocator()) \
809 -> unordered_multimap<Key, Mapped, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
810 template<typename Iterator, typename HashFunc, \
811 typename Value = typename std::iterator_traits<Iterator>::value_type, \
812 typename Key = std::decay_t<typename Value::first_type>, \
813 typename Mapped = std::decay_t<typename Value::second_type>, \
814 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
815 typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
816 unordered_multimap(Iterator, Iterator, size_t, HashFunc, Allocator = Allocator()) \
817 -> unordered_multimap<Key, Mapped, HashFunc, std::equal_to<Key>, Allocator>; \
818 template<typename Iterator, typename HashFunc, typename EqualFunc, \
819 typename Value = typename std::iterator_traits<Iterator>::value_type, \
820 typename Key = std::decay_t<typename Value::first_type>, \
821 typename Mapped = std::decay_t<typename Value::second_type>, \
822 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
823 typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
824 unordered_multimap(Iterator, Iterator, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
825 -> unordered_multimap<Key, Mapped, HashFunc, EqualFunc, Allocator>; \
826 template<typename CKey, typename Mapped, \
827 typename Key = std::remove_const_t<CKey>> \
828 unordered_multimap(std::initializer_list<std::pair<CKey, Mapped>>) \
829 -> unordered_multimap<Key, Mapped>; \
830 template<typename CKey, typename Mapped, \
831 typename Key = std::remove_const_t<CKey>, \
832 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
833 typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
834 unordered_multimap(std::initializer_list<std::pair<CKey, Mapped>>, size_t, Allocator = Allocator()) \
835 -> unordered_multimap<Key, Mapped, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
836 template<typename CKey, typename Mapped, typename HashFunc, \
837 typename Key = std::remove_const_t<CKey>, \
838 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
839 typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
840 unordered_multimap(std::initializer_list<std::pair<CKey, Mapped>>, size_t, HashFunc, Allocator = Allocator()) \
841 -> unordered_multimap<Key, Mapped, HashFunc, std::equal_to<Key>, Allocator>; \
842 template<typename CKey, typename Mapped, typename HashFunc, typename EqualFunc, \
843 typename Key = std::remove_const_t<CKey>, \
844 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
845 typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
846 unordered_multimap(std::initializer_list<std::pair<CKey, Mapped>>, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
847 -> unordered_multimap<Key, Mapped, HashFunc, EqualFunc, Allocator>;
849 MOMO_DECLARE_DEDUCTION_GUIDES(unordered_multimap)
850 MOMO_DECLARE_DEDUCTION_GUIDES(unordered_multimap_open)
852 #undef MOMO_DECLARE_DEDUCTION_GUIDES
854 #ifdef MOMO_HAS_CONTAINERS_RANGES
856 #define MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_multimap) \
857 template<std::ranges::input_range Range, \
858 typename Value = std::ranges::range_value_t<Range>, \
859 typename Key = std::decay_t<typename Value::first_type>, \
860 typename Mapped = std::decay_t<typename Value::second_type>> \
861 unordered_multimap(std::from_range_t, Range&&) \
862 -> unordered_multimap<Key, Mapped>; \
863 template<std::ranges::input_range Range, \
864 typename Value = std::ranges::range_value_t<Range>, \
865 typename Key = std::decay_t<typename Value::first_type>, \
866 typename Mapped = std::decay_t<typename Value::second_type>, \
867 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
868 typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
869 unordered_multimap(std::from_range_t, Range&&, size_t, Allocator = Allocator()) \
870 -> unordered_multimap<Key, Mapped, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
871 template<std::ranges::input_range Range, typename HashFunc, \
872 typename Value = std::ranges::range_value_t<Range>, \
873 typename Key = std::decay_t<typename Value::first_type>, \
874 typename Mapped = std::decay_t<typename Value::second_type>, \
875 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
876 typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
877 unordered_multimap(std::from_range_t, Range&&, size_t, HashFunc, Allocator = Allocator()) \
878 -> unordered_multimap<Key, Mapped, HashFunc, std::equal_to<Key>, Allocator>; \
879 template<std::ranges::input_range Range, typename HashFunc, typename EqualFunc, \
880 typename Value = std::ranges::range_value_t<Range>, \
881 typename Key = std::decay_t<typename Value::first_type>, \
882 typename Mapped = std::decay_t<typename Value::second_type>, \
883 typename Allocator = std::allocator<std::pair<const Key, Mapped>>, \
884 typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
885 unordered_multimap(std::from_range_t, Range&&, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
886 -> unordered_multimap<Key, Mapped, HashFunc, EqualFunc, Allocator>;
888 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_multimap)
889 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_multimap_open)
891 #undef MOMO_DECLARE_DEDUCTION_GUIDES_RANGES
893 #endif // MOMO_HAS_CONTAINERS_RANGES
895 #endif // MOMO_HAS_DEDUCTION_GUIDES
901 #endif // MOMO_INCLUDE_GUARD_STDISH_UNORDERED_MULTIMAP
friend void swap(unordered_multimap &left, unordered_multimap &right) noexcept
Definition: unordered_multimap.h:308
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, std::pair< iterator, iterator > > equal_range(const KeyArg &key)
Definition: unordered_multimap.h:465
Definition: ObjectManager.h:212
internal::HashMultiMapIterator< KeyIterator, Settings > Iterator
Definition: HashMultiMap.h:674
size_type max_size() const noexcept
Definition: unordered_multimap.h:371
void insert(std::initializer_list< value_type > values)
Definition: unordered_multimap.h:490
unordered_multimap(const unordered_multimap &right)
Definition: unordered_multimap.h:254
unordered_multimap(unordered_multimap &&right, const momo::internal::Identity< allocator_type > &alloc) noexcept(std::is_empty< allocator_type >::value)
Definition: unordered_multimap.h:247
Definition: HashMultiMap.h:182
ConstIterator MakeIterator(ConstKeyIterator keyIter, size_t valueIndex=0) const
Definition: HashMultiMap.h:1136
TReference< typename BaseIterator::Reference > Reference
Definition: IteratorUtility.h:381
TAllocator allocator_type
Definition: unordered_multimap.h:76
TMapped mapped_type
Definition: unordered_multimap.h:73
iterator erase(iterator where)
Definition: unordered_multimap.h:564
void swap(unordered_multimap &right) noexcept
Definition: unordered_multimap.h:301
unordered_multimap_open()
Definition: unordered_multimap.h:771
THashTraits HashTraits
Definition: HashMultiMap.h:564
const_iterator cbegin() const noexcept
Definition: unordered_multimap.h:343
const nested_container_type & get_nested_container() const noexcept
Definition: unordered_multimap.h:313
const_iterator end() const noexcept
Definition: unordered_multimap.h:333
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, size_type > count(const KeyArg &key) const
Definition: unordered_multimap.h:426
friend bool operator!=(const unordered_multimap &left, const unordered_multimap &right)
Definition: unordered_multimap.h:646
iterator erase(const_iterator where)
Definition: unordered_multimap.h:554
unordered_multimap()
Definition: unordered_multimap.h:123
const_iterator begin() const noexcept
Definition: unordered_multimap.h:323
unordered_multimap(Iterator first, Iterator last, size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:157
size_t size_type
Definition: unordered_multimap.h:80
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, iterator > find(const KeyArg &key)
Definition: unordered_multimap.h:413
unordered_multimap & operator=(std::initializer_list< value_type > values)
Definition: unordered_multimap.h:293
momo::stdish::unordered_multimap is similar to std::unordered_multimap, but much more efficient in me...
Definition: unordered_multimap.h:65
HashMultiMap nested_container_type
Definition: unordered_multimap.h:78
unordered_multimap(Iterator first, Iterator last, size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:173
iterator emplace(KeyArg &&keyArg, MappedArg &&mappedArg)
Definition: unordered_multimap.h:528
iterator emplace(std::piecewise_construct_t, std::tuple< KeyArgs... > keyArgs, std::tuple< MappedArgs... > mappedArgs)
Definition: unordered_multimap.h:541
KeyIterator GetKeyIterator() const noexcept
Definition: HashMultiMap.h:249
nested_container_type & get_nested_container() noexcept
Definition: unordered_multimap.h:318
iterator begin() noexcept
Definition: unordered_multimap.h:328
MemManagerStd uses allocator<unsigned char>::allocate and deallocate
Definition: MemManager.h:177
unordered_multimap(unordered_multimap &&right) noexcept
Definition: unordered_multimap.h:242
TEqualFunc key_equal
Definition: unordered_multimap.h:75
unordered_multimap(Iterator first, Iterator last, size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:165
unordered_multimap(size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:132
iterator emplace()
Definition: unordered_multimap.h:504
unordered_multimap(Iterator first, Iterator last)
Definition: unordered_multimap.h:151
iterator emplace_hint(const_iterator, ValueArg &&valueArg)
Definition: unordered_multimap.h:522
const_iterator cend() const noexcept
Definition: unordered_multimap.h:348
iterator end() noexcept
Definition: unordered_multimap.h:338
unordered_multimap(size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:144
friend size_type erase_if(unordered_multimap &cont, const ValueFilter &valueFilter)
Definition: unordered_multimap.h:599
TMapped mapped_type
Definition: unordered_multimap.h:73
TKey key_type
Definition: unordered_multimap.h:72
unordered_multimap & operator=(unordered_multimap &&right) noexcept(std::is_empty< allocator_type >::value||std::allocator_traits< allocator_type >::propagate_on_container_move_assignment::value)
Definition: unordered_multimap.h:267
unordered_multimap & operator=(const unordered_multimap &right)
Definition: unordered_multimap.h:281
MOMO_FORCEINLINE std::pair< iterator, iterator > equal_range(const key_type &key)
Definition: unordered_multimap.h:450
size_type erase(const key_type &key)
Definition: unordered_multimap.h:593
typename std::enable_if< value, Type >::type EnableIf
Definition: Utility.h:198
iterator emplace(ValueArg &&valueArg)
Definition: unordered_multimap.h:515
momo::internal::HashDerivedIterator< typename HashMultiMap::Iterator, momo::internal::MapReferenceStd > iterator
Definition: unordered_multimap.h:86
momo::stdish::unordered_multimap_open is similar to std::unordered_multimap, but much more efficient ...
Definition: unordered_multimap.h:755
allocator_type get_allocator() const noexcept
Definition: unordered_multimap.h:366
friend void swap(unordered_multimap_open &left, unordered_multimap_open &right) noexcept
Definition: unordered_multimap.h:779
MOMO_FORCEINLINE const_iterator find(const key_type &key) const
Definition: unordered_multimap.h:394
Definition: IteratorUtility.h:264
THashFunc hasher
Definition: unordered_multimap.h:74
iterator erase(const_iterator first, const_iterator last)
Definition: unordered_multimap.h:569
EnableIf< true, Type > Identity
Definition: Utility.h:201
const_iterator::Pointer const_pointer
Definition: unordered_multimap.h:93
TBaseIterator BaseIterator
Definition: IteratorUtility.h:378
friend size_type erase_if(unordered_multimap_open &cont, const ValueFilter &valueFilter)
Definition: unordered_multimap.h:785
size_t size_type
Definition: unordered_multimap.h:80
momo::internal::EnableIf< std::is_constructible< value_type, ValueArg && >::value, iterator > insert(const_iterator, ValueArg &&valueArg)
Definition: unordered_multimap.h:479
unordered_multimap(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_multimap.h:198
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, const_iterator > find(const KeyArg &key) const
Definition: unordered_multimap.h:406
#define MOMO_DECLARE_PROXY_CONSTRUCTOR(Object)
Definition: Utility.h:107
unordered_multimap(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:192
iterator emplace_hint(const_iterator, KeyArg &&keyArg, MappedArg &&mappedArg)
Definition: unordered_multimap.h:535
MOMO_NODISCARD bool empty() const noexcept
Definition: unordered_multimap.h:381
momo::internal::EnableIf< std::is_constructible< value_type, ValueArg && >::value, iterator > insert(ValueArg &&valueArg)
Definition: unordered_multimap.h:472
key_equal key_eq() const
Definition: unordered_multimap.h:361
Definition: IteratorUtility.h:376
unordered_multimap(const unordered_multimap &right, const momo::internal::Identity< allocator_type > &alloc)
Definition: unordered_multimap.h:259
unordered_multimap(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:186
ptrdiff_t difference_type
Definition: unordered_multimap.h:81
Definition: ObjectManager.h:161
friend bool operator==(const unordered_multimap &left, const unordered_multimap &right)
Definition: unordered_multimap.h:624
Definition: ArrayUtility.h:308
unordered_multimap(std::initializer_list< momo::internal::Identity< value_type >> values)
Definition: unordered_multimap.h:181
#define MOMO_FORCEINLINE
Definition: UserSettings.h:114
iterator::Reference reference
Definition: unordered_multimap.h:89
unordered_multimap(size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_multimap.h:138
void clear() noexcept
Definition: unordered_multimap.h:386
MOMO_FORCEINLINE iterator find(const key_type &key)
Definition: unordered_multimap.h:399
ConstIterator GetEnd() const noexcept
Definition: HashMultiMap.h:828
hasher hash_function() const
Definition: unordered_multimap.h:356
Definition: HashMultiMap.h:560
TMemManager MemManager
Definition: HashMultiMap.h:565
MOMO_FORCEINLINE std::pair< const_iterator, const_iterator > equal_range(const key_type &key) const
Definition: unordered_multimap.h:444
unordered_multimap(const allocator_type &alloc)
Definition: unordered_multimap.h:127
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, std::pair< const_iterator, const_iterator > > equal_range(const KeyArg &key) const
Definition: unordered_multimap.h:457
iterator::ConstIterator const_iterator
Definition: unordered_multimap.h:87
TKey key_type
Definition: unordered_multimap.h:72
size_type size() const noexcept
Definition: unordered_multimap.h:376
MOMO_FORCEINLINE size_type count(const key_type &key) const
Definition: unordered_multimap.h:418
const_iterator::Reference const_reference
Definition: unordered_multimap.h:90
const_iterator::Reference const_reference
Definition: unordered_multimap.h:90
std::pair< const key_type, mapped_type > value_type
Definition: unordered_multimap.h:83
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, bool > contains(const KeyArg &key) const
Definition: unordered_multimap.h:439
iterator::Pointer pointer
Definition: unordered_multimap.h:92
void insert(Iterator first, Iterator last)
Definition: unordered_multimap.h:485
unordered_multimap_open & operator=(std::initializer_list< value_type > values)
Definition: unordered_multimap.h:773
MOMO_FORCEINLINE bool contains(const key_type &key) const
Definition: unordered_multimap.h:432
#define MOMO_ASSERT(expr)
Definition: UserSettings.h:162
~unordered_multimap()=default
iterator emplace_hint(const_iterator)
Definition: unordered_multimap.h:509
#define MOMO_DECLARE_PROXY_FUNCTION(Object, Func, Result)
Definition: Utility.h:116
#define MOMO_NODISCARD
Definition: UserSettings.h:203
iterator emplace_hint(const_iterator, std::piecewise_construct_t, std::tuple< KeyArgs... > keyArgs, std::tuple< MappedArgs... > mappedArgs)
Definition: unordered_multimap.h:548
Definition: MapUtility.h:68