Go to the documentation of this file.
17 #ifndef MOMO_INCLUDE_GUARD_STDISH_UNORDERED_SET
18 #define MOMO_INCLUDE_GUARD_STDISH_UNORDERED_SET
20 #include "../HashSet.h"
51 template<
typename TKey,
52 typename THashFunc = HashCoder<TKey>,
53 typename TEqualFunc = std::equal_to<TKey>,
54 typename TAllocator = std::allocator<TKey>,
55 typename THashSet = HashSet<TKey, HashTraitsStd<TKey, THashFunc, TEqualFunc>,
56 MemManagerStd<TAllocator>>>
60 typedef THashSet HashSet;
97 template<
typename KeyArg>
98 struct IsValidKeyArg :
public HashTraits::template IsValidKeyArg<KeyArg>
136 template<
typename Iterator>
142 template<
typename Iterator>
150 template<
typename Iterator>
158 template<
typename Iterator>
190 #ifdef MOMO_HAS_CONTAINERS_RANGES
191 template<std::ranges::input_range Range>
192 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
195 insert_range(std::forward<Range>(values));
198 template<std::ranges::input_range Range>
199 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
204 insert_range(std::forward<Range>(values));
207 template<std::ranges::input_range Range>
208 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
213 insert_range(std::forward<Range>(values));
216 template<std::ranges::input_range Range>
217 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
222 insert_range(std::forward<Range>(values));
224 #endif // MOMO_HAS_CONTAINERS_RANGES
227 : mHashSet(std::move(right.mHashSet))
232 noexcept(std::is_empty<allocator_type>::value)
233 : mHashSet(pvCreateSet(
std::move(right), alloc))
238 : mHashSet(right.mHashSet)
250 noexcept(std::is_empty<allocator_type>::value ||
251 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value)
255 bool propagate = std::is_empty<allocator_type>::value ||
256 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value;
258 mHashSet = pvCreateSet(std::move(right), alloc);
267 bool propagate = std::is_empty<allocator_type>::value ||
268 std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value;
283 MOMO_ASSERT(std::allocator_traits<allocator_type>::propagate_on_container_swap::value
285 mHashSet.Swap(right.mHashSet);
305 return mHashSet.GetBegin();
312 return mHashSet.GetEnd();
337 throw std::out_of_range(
"invalid load factor");
338 HashTraits hashTraits(mHashSet.GetHashTraits(), maxLoadFactor);
342 mHashSet = std::move(hashSet);
347 return mHashSet.GetHashTraits().GetHashFunc();
352 return mHashSet.GetHashTraits().GetEqualFunc();
357 return allocator_type(mHashSet.GetMemManager().GetByteAllocator());
362 return std::allocator_traits<allocator_type>::max_size(
get_allocator());
367 return mHashSet.GetCount();
372 return mHashSet.IsEmpty();
382 bucketCount = std::minmax(bucketCount,
size_t{2}).second;
384 bucketCount =
size_t{1} << logBucketCount;
390 mHashSet.Reserve(
count);
395 return mHashSet.Find(key);
400 template<
typename KeyArg>
404 return mHashSet.Find(key);
416 template<
typename KeyArg>
425 return mHashSet.ContainsKey(key);
428 template<
typename KeyArg>
432 return mHashSet.ContainsKey(key);
443 template<
typename KeyArg>
445 std::pair<const_iterator, const_iterator>>
equal_range(
const KeyArg& key)
const
462 #ifdef MOMO_USE_UNORDERED_HINT_ITERATORS
463 return mHashSet.Add(hint, std::move(value));
466 return insert(std::move(value)).first;
478 #ifdef MOMO_USE_UNORDERED_HINT_ITERATORS
479 return mHashSet.Add(hint, value);
482 return insert(value).first;
491 std::move(NodeTypeProxy::GetExtractedItem(node)));
497 #ifdef MOMO_USE_UNORDERED_HINT_ITERATORS
500 return mHashSet.Add(hint, std::move(NodeTypeProxy::GetExtractedItem(node)));
503 return insert(std::move(node)).position;
507 template<
typename Iterator>
508 void insert(Iterator first, Iterator last)
510 pvInsertRange(first, last);
513 void insert(std::initializer_list<value_type> values)
515 mHashSet.Insert(values);
518 #ifdef MOMO_HAS_CONTAINERS_RANGES
519 template<std::ranges::input_range Range>
520 requires std::convertible_to<std::ranges::range_reference_t<Range>,
value_type>
521 void insert_range(Range&& values)
523 pvInsertRange(std::ranges::begin(values), std::ranges::end(values));
525 #endif // MOMO_HAS_CONTAINERS_RANGES
527 template<
typename... ValueArgs>
528 std::pair<iterator, bool>
emplace(ValueArgs&&... valueArgs)
530 MemManager& memManager = mHashSet.GetMemManager();
532 typedef typename HashSet::ItemTraits::template Creator<ValueArgs...> ValueCreator;
533 extItem.
Create(ValueCreator(memManager, std::forward<ValueArgs>(valueArgs)...));
538 template<
typename ValueArg>
540 std::pair<iterator, bool>>
emplace(ValueArg&& valueArg)
543 static_cast<const key_type&
>(valueArg), std::forward<ValueArg>(valueArg));
547 template<
typename... ValueArgs>
550 #ifdef MOMO_USE_UNORDERED_HINT_ITERATORS
551 return mHashSet.AddVar(hint, std::forward<ValueArgs>(valueArgs)...);
554 return emplace(std::forward<ValueArgs>(valueArgs)...).first;
560 return mHashSet.Remove(where);
567 if (first ==
begin() && last ==
end())
574 if (first !=
end() && std::next(first) == last)
576 throw std::invalid_argument(
"invalid unordered_set erase arguments");
581 return mHashSet.Remove(key) ? 1 : 0;
584 template<
typename ValueFilter>
587 return cont.mHashSet.Remove(valueFilter);
601 template<
typename Set>
615 return mHashSet.GetBucketCount();
620 return mHashSet.GetBucketBounds(bucketIndex).GetCount();
625 return mHashSet.GetBucketBounds(bucketIndex).GetBegin();
630 return mHashSet.GetBucketBounds(bucketIndex).GetBegin();
635 return mHashSet.GetBucketBounds(bucketIndex).GetEnd();
640 return mHashSet.GetBucketBounds(bucketIndex).GetEnd();
645 return begin(bucketIndex);
650 return end(bucketIndex);
655 return mHashSet.GetBucketIndex(key);
662 if (
count == 0 && bucketCount == 0)
664 return static_cast<float>(
count) /
static_cast<float>(bucketCount);
673 if (right.
find(ref) == right.
end())
681 return !(left == right);
687 if (right.get_allocator() == alloc)
688 return std::move(right.mHashSet);
689 HashSet hashSet(right.mHashSet.GetHashTraits(), MemManager(alloc));
690 hashSet.MergeFrom(right.mHashSet);
694 template<
typename Iterator,
typename Sentinel>
696 void> pvInsertRange(Iterator
begin, Sentinel
end)
698 mHashSet.Insert(std::move(
begin), std::move(
end));
701 template<
typename Iterator,
typename Sentinel>
703 void> pvInsertRange(Iterator
begin, Sentinel
end)
705 for (Iterator iter = std::move(
begin); iter !=
end; ++iter)
722 template<
typename TKey,
723 typename THashFunc = HashCoder<TKey>,
724 typename TEqualFunc = std::equal_to<TKey>,
725 typename TAllocator = std::allocator<TKey>>
727 HashSet<TKey, HashTraitsStd<TKey, THashFunc, TEqualFunc, HashBucketOpenDefault>,
728 MemManagerStd<TAllocator>>>
731 typedef unordered_set<TKey, THashFunc, TEqualFunc, TAllocator,
740 using UnorderedSet::UnorderedSet;
755 template<
typename ValueFilter>
762 #ifdef MOMO_HAS_DEDUCTION_GUIDES
764 #define MOMO_DECLARE_DEDUCTION_GUIDES(unordered_set) \
765 template<typename Iterator, \
766 typename Key = typename std::iterator_traits<Iterator>::value_type> \
767 unordered_set(Iterator, Iterator) \
768 -> unordered_set<Key>; \
769 template<typename Iterator, \
770 typename Key = typename std::iterator_traits<Iterator>::value_type, \
771 typename Allocator = std::allocator<Key>, \
772 typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
773 unordered_set(Iterator, Iterator, size_t, Allocator = Allocator()) \
774 -> unordered_set<Key, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
775 template<typename Iterator, typename HashFunc, \
776 typename Key = typename std::iterator_traits<Iterator>::value_type, \
777 typename Allocator = std::allocator<Key>, \
778 typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
779 unordered_set(Iterator, Iterator, size_t, HashFunc, Allocator = Allocator()) \
780 -> unordered_set<Key, HashFunc, std::equal_to<Key>, Allocator>; \
781 template<typename Iterator, typename HashFunc, typename EqualFunc, \
782 typename Key = typename std::iterator_traits<Iterator>::value_type, \
783 typename Allocator = std::allocator<Key>, \
784 typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
785 unordered_set(Iterator, Iterator, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
786 -> unordered_set<Key, HashFunc, EqualFunc, Allocator>; \
787 template<typename Key> \
788 unordered_set(std::initializer_list<Key>) \
789 -> unordered_set<Key>; \
790 template<typename Key, \
791 typename Allocator = std::allocator<Key>, \
792 typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
793 unordered_set(std::initializer_list<Key>, size_t, Allocator = Allocator()) \
794 -> unordered_set<Key, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
795 template<typename Key, typename HashFunc, \
796 typename Allocator = std::allocator<Key>, \
797 typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
798 unordered_set(std::initializer_list<Key>, size_t, HashFunc, Allocator = Allocator()) \
799 -> unordered_set<Key, HashFunc, std::equal_to<Key>, Allocator>; \
800 template<typename Key, typename HashFunc, typename EqualFunc, \
801 typename Allocator = std::allocator<Key>, \
802 typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
803 unordered_set(std::initializer_list<Key>, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
804 -> unordered_set<Key, HashFunc, EqualFunc, Allocator>;
806 MOMO_DECLARE_DEDUCTION_GUIDES(unordered_set)
807 MOMO_DECLARE_DEDUCTION_GUIDES(unordered_set_open)
809 #undef MOMO_DECLARE_DEDUCTION_GUIDES
811 #ifdef MOMO_HAS_CONTAINERS_RANGES
813 #define MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_set) \
814 template<std::ranges::input_range Range, \
815 typename Key = std::ranges::range_value_t<Range>> \
816 unordered_set(std::from_range_t, Range&&) \
817 -> unordered_set<Key>; \
818 template<std::ranges::input_range Range, \
819 typename Key = std::ranges::range_value_t<Range>, \
820 typename Allocator = std::allocator<Key>, \
821 typename = internal::unordered_checker<Key, Allocator, HashCoder<Key>>> \
822 unordered_set(std::from_range_t, Range&&, size_t, Allocator = Allocator()) \
823 -> unordered_set<Key, HashCoder<Key>, std::equal_to<Key>, Allocator>; \
824 template<std::ranges::input_range Range, typename HashFunc, \
825 typename Key = std::ranges::range_value_t<Range>, \
826 typename Allocator = std::allocator<Key>, \
827 typename = internal::unordered_checker<Key, Allocator, HashFunc>> \
828 unordered_set(std::from_range_t, Range&&, size_t, HashFunc, Allocator = Allocator()) \
829 -> unordered_set<Key, HashFunc, std::equal_to<Key>, Allocator>; \
830 template<std::ranges::input_range Range, typename HashFunc, typename EqualFunc, \
831 typename Key = std::ranges::range_value_t<Range>, \
832 typename Allocator = std::allocator<Key>, \
833 typename = internal::unordered_checker<Key, Allocator, HashFunc, EqualFunc>> \
834 unordered_set(std::from_range_t, Range&&, size_t, HashFunc, EqualFunc, Allocator = Allocator()) \
835 -> unordered_set<Key, HashFunc, EqualFunc, Allocator>;
837 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_set)
838 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(unordered_set_open)
840 #undef MOMO_DECLARE_DEDUCTION_GUIDES_RANGES
842 #endif // MOMO_HAS_CONTAINERS_RANGES
844 #endif // MOMO_HAS_DEDUCTION_GUIDES
850 #endif // MOMO_INCLUDE_GUARD_STDISH_UNORDERED_SET
unordered_set(size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:119
unordered_set(Iterator first, Iterator last, size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:159
size_type bucket_count() const noexcept
Definition: unordered_set.h:613
Position position
Definition: IteratorUtility.h:168
static const size_t maxSize
Definition: Utility.h:447
TMemManager MemManager
Definition: HashSet.h:470
iterator erase(const_iterator first, const_iterator last)
Definition: unordered_set.h:565
ptrdiff_t difference_type
Definition: unordered_set.h:73
iterator insert(const_iterator hint, value_type &&value)
Definition: unordered_set.h:460
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, size_type > count(const KeyArg &key) const
Definition: unordered_set.h:418
const nested_container_type & get_nested_container() const noexcept
Definition: unordered_set.h:293
size_t size_type
Definition: unordered_set.h:72
unordered_set & operator=(unordered_set &&right) noexcept(std::is_empty< allocator_type >::value||std::allocator_traits< allocator_type >::propagate_on_container_move_assignment::value)
Definition: unordered_set.h:249
const_local_iterator begin(size_type bucketIndex) const
Definition: unordered_set.h:628
const_iterator begin() const noexcept
Definition: unordered_set.h:303
insert_return_type insert(node_type &&node)
Definition: unordered_set.h:486
unordered_set(const unordered_set &right, const momo::internal::Identity< allocator_type > &alloc)
Definition: unordered_set.h:242
size_type max_size() const noexcept
Definition: unordered_set.h:360
MOMO_FORCEINLINE std::pair< const_iterator, const_iterator > equal_range(const key_type &key) const
Definition: unordered_set.h:435
friend bool operator==(const unordered_set &left, const unordered_set &right)
Definition: unordered_set.h:667
unordered_set(unordered_set &&right) noexcept
Definition: unordered_set.h:226
iterator insert(const_iterator hint, node_type &&node)
Definition: unordered_set.h:495
const_iterator end() const noexcept
Definition: unordered_set.h:310
Definition: set_map_utility.h:194
const Item * Pointer
Definition: HashSet.h:206
void clear() noexcept
Definition: unordered_set.h:375
static UInt Log2(UInt value) noexcept
Definition: Utility.h:385
node_type extract(const_iterator where)
Definition: unordered_set.h:590
size_type max_bucket_count() const noexcept
Definition: unordered_set.h:607
size_t size_type
Definition: unordered_set.h:72
void insert(std::initializer_list< value_type > values)
Definition: unordered_set.h:513
local_iterator end(size_type bucketIndex)
Definition: unordered_set.h:633
unordered_set(size_type bucketCount, const hasher &hashFunc, const key_equal &equalFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:130
const Item & Reference
Definition: HashSet.h:205
unordered_set(const allocator_type &alloc)
Definition: unordered_set.h:114
void Reserve(size_t capacity)
Definition: HashSet.h:709
float load_factor() const noexcept
Definition: unordered_set.h:658
std::pair< iterator, bool > insert(const value_type &value)
Definition: unordered_set.h:470
momo::stdish::set is similar to std::set, but much more efficient in memory usage....
Definition: set.h:58
MemManagerStd uses allocator<unsigned char>::allocate and deallocate
Definition: MemManager.h:177
unordered_set(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:177
friend size_type erase_if(unordered_set &cont, const ValueFilter &valueFilter)
Definition: unordered_set.h:585
unordered_set_open()
Definition: unordered_set.h:742
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, std::pair< const_iterator, const_iterator > > equal_range(const KeyArg &key) const
Definition: unordered_set.h:445
ConstIterator Remove(ConstIterator iter)
Definition: HashSet.h:849
void insert(Iterator first, Iterator last)
Definition: unordered_set.h:508
Definition: IteratorUtility.h:136
unordered_set(Iterator first, Iterator last, size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:143
Definition: HashSet.h:279
key_type value_type
Definition: unordered_set.h:75
unordered_set(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_set.h:183
MOMO_NODISCARD bool empty() const noexcept
Definition: unordered_set.h:370
unordered_set()
Definition: unordered_set.h:110
InsertResult Insert(Item &&item)
Definition: HashSet.h:771
void max_load_factor(float maxLoadFactor)
Definition: unordered_set.h:332
unordered_set(const unordered_set &right)
Definition: unordered_set.h:237
THashTraits HashTraits
Definition: HashSet.h:469
typename std::enable_if< value, Type >::type EnableIf
Definition: Utility.h:198
iterator emplace_hint(const_iterator hint, ValueArgs &&... valueArgs)
Definition: unordered_set.h:548
unordered_set & operator=(std::initializer_list< value_type > values)
Definition: unordered_set.h:275
TAllocator allocator_type
Definition: unordered_set.h:68
size_type bucket_size(size_type bucketIndex) const
Definition: unordered_set.h:618
MOMO_FORCEINLINE size_type count(const key_type &key) const
Definition: unordered_set.h:411
TKey key_type
Definition: unordered_set.h:65
hasher hash_function() const
Definition: unordered_set.h:345
const nested_container_type & get_nested_container() const noexcept
Definition: set.h:237
static const size_t bucketMaxItemCount
Definition: HashSet.h:504
const_local_iterator end(size_type bucketIndex) const
Definition: unordered_set.h:638
bool inserted
Definition: IteratorUtility.h:171
EnableIf< true, Type > Identity
Definition: Utility.h:201
HashSet::Iterator iterator
Definition: unordered_set.h:78
void reserve(size_type count)
Definition: unordered_set.h:388
allocator_type get_allocator() const noexcept
Definition: unordered_set.h:355
value_type & reference
Definition: unordered_set.h:81
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, bool > contains(const KeyArg &key) const
Definition: unordered_set.h:430
key_equal key_eq() const
Definition: unordered_set.h:350
momo::stdish::unordered_set_open is similar to std::unordered_set, but much more efficient in operati...
Definition: unordered_set.h:729
TSetExtractedItem SetExtractedItem
Definition: set_map_utility.h:35
const_local_iterator cbegin(size_type bucketIndex) const
Definition: unordered_set.h:643
Definition: HashTraits.h:196
HashSet::ConstIterator const_iterator
Definition: unordered_set.h:77
const_iterator::Reference const_reference
Definition: unordered_set.h:82
momo::internal::EnableIf< std::is_same< key_type, typename std::decay< ValueArg >::type >::value, std::pair< iterator, bool > > emplace(ValueArg &&valueArg)
Definition: unordered_set.h:540
size_type bucket(const key_type &key) const
Definition: unordered_set.h:653
friend size_type erase_if(unordered_set_open &cont, const ValueFilter &valueFilter)
Definition: unordered_set.h:756
THashFunc hasher
Definition: unordered_set.h:66
unordered_set & operator=(const unordered_set &right)
Definition: unordered_set.h:263
iterator insert(const_iterator hint, const value_type &value)
Definition: unordered_set.h:476
void merge(Set &&set)
Definition: unordered_set.h:602
Definition: ArrayUtility.h:308
#define MOMO_FORCEINLINE
Definition: UserSettings.h:114
MOMO_FORCEINLINE momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, const_iterator > find(const KeyArg &key) const
Definition: unordered_set.h:402
TEqualFunc key_equal
Definition: unordered_set.h:67
HashSet nested_container_type
Definition: unordered_set.h:70
void swap(unordered_set &right) noexcept
Definition: unordered_set.h:281
unordered_set(Iterator first, Iterator last, size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:151
unordered_set(std::initializer_list< momo::internal::Identity< value_type >> values)
Definition: unordered_set.h:166
node_type extract(const key_type &key)
Definition: unordered_set.h:595
const_local_iterator local_iterator
Definition: unordered_set.h:94
const_iterator::Pointer const_pointer
Definition: unordered_set.h:86
unordered_set(size_type bucketCount, const hasher &hashFunc, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:124
const_iterator cbegin() const noexcept
Definition: unordered_set.h:317
size_type size() const noexcept
Definition: unordered_set.h:365
Definition: set_map_utility.h:33
std::pair< iterator, bool > insert(value_type &&value)
Definition: unordered_set.h:454
HashSet::ConstBucketBounds::Iterator const_local_iterator
Definition: unordered_set.h:93
const_iterator cend() const noexcept
Definition: unordered_set.h:322
std::pair< iterator, bool > emplace(ValueArgs &&... valueArgs)
Definition: unordered_set.h:528
unordered_set(Iterator first, Iterator last)
Definition: unordered_set.h:137
void rehash(size_type bucketCount)
Definition: unordered_set.h:380
MOMO_FORCEINLINE bool contains(const key_type &key) const
Definition: unordered_set.h:423
friend bool operator!=(const unordered_set &left, const unordered_set &right)
Definition: unordered_set.h:679
momo::stdish::unordered_set is similar to std::unordered_set, but much more efficient in memory usage...
Definition: unordered_set.h:58
unordered_set_open & operator=(std::initializer_list< value_type > values)
Definition: unordered_set.h:744
MOMO_FORCEINLINE const_iterator find(const key_type &key) const
Definition: unordered_set.h:393
size_type erase(const key_type &key)
Definition: unordered_set.h:579
nested_container_type & get_nested_container() noexcept
Definition: unordered_set.h:298
unordered_set(std::initializer_list< momo::internal::Identity< value_type >> values, size_type bucketCount, const allocator_type &alloc=allocator_type())
Definition: unordered_set.h:171
internal::set_node_handle< typename HashSet::ExtractedItem > node_type
Definition: unordered_set.h:90
unordered_set(unordered_set &&right, const momo::internal::Identity< allocator_type > &alloc) noexcept(std::is_empty< allocator_type >::value)
Definition: unordered_set.h:231
#define MOMO_ASSERT(expr)
Definition: UserSettings.h:162
friend void swap(unordered_set &left, unordered_set &right) noexcept
Definition: unordered_set.h:288
#define MOMO_DECLARE_PROXY_FUNCTION(Object, Func, Result)
Definition: Utility.h:116
value_type * pointer
Definition: unordered_set.h:85
iterator erase(const_iterator where)
Definition: unordered_set.h:558
internal::insert_return_type< iterator, node_type > insert_return_type
Definition: unordered_set.h:91
#define MOMO_NODISCARD
Definition: UserSettings.h:203
friend void swap(unordered_set_open &left, unordered_set_open &right) noexcept
Definition: unordered_set.h:750
float max_load_factor() const noexcept
Definition: unordered_set.h:327
local_iterator begin(size_type bucketIndex)
Definition: unordered_set.h:623
const_local_iterator cend(size_type bucketIndex) const
Definition: unordered_set.h:648