momo  3.10
set.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/set.h
10 
11  namespace momo::stdish:
12  class set
13  class multiset
14 
15 \**********************************************************/
16 
17 #ifndef MOMO_INCLUDE_GUARD_STDISH_SET
18 #define MOMO_INCLUDE_GUARD_STDISH_SET
19 
20 #include "../TreeSet.h"
21 #include "set_map_utility.h"
22 
23 namespace momo
24 {
25 
26 namespace stdish
27 {
28 
53 template<typename TKey,
54  typename TLessFunc = std::less<TKey>,
55  typename TAllocator = std::allocator<TKey>,
56  typename TTreeSet = TreeSet<TKey, TreeTraitsStd<TKey, TLessFunc>, MemManagerStd<TAllocator>>>
57 class set
58 {
59 private:
60  typedef TTreeSet TreeSet;
61  typedef typename TreeSet::TreeTraits TreeTraits;
62  typedef typename TreeSet::MemManager MemManager;
63 
64 public:
65  typedef TKey key_type;
66  typedef TLessFunc key_compare;
67  typedef TAllocator allocator_type;
68 
69  typedef TreeSet nested_container_type;
70 
71  typedef size_t size_type;
72  typedef ptrdiff_t difference_type;
73 
76 
78  typedef typename TreeSet::Iterator iterator;
79 
80  //typedef typename iterator::Reference reference;
83 
84  //typedef typename iterator::Pointer pointer;
85  typedef value_type* pointer;
87  //typedef typename std::allocator_traits<allocator_type>::pointer pointer;
88  //typedef typename std::allocator_traits<allocator_type>::const_pointer const_pointer;
89 
90  typedef std::reverse_iterator<iterator> reverse_iterator;
91  typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
92 
95 
96 private:
97  template<typename KeyArg>
98  struct IsValidKeyArg : public TreeTraits::template IsValidKeyArg<KeyArg>
99  {
100  };
101 
102  struct NodeTypeProxy : private node_type
103  {
104  typedef node_type NodeType;
105  MOMO_DECLARE_PROXY_FUNCTION(NodeType, GetExtractedItem,
106  typename NodeType::SetExtractedItem&)
107  };
108 
109 public:
110  set()
111  {
112  }
113 
114  explicit set(const allocator_type& alloc)
115  : mTreeSet(TreeTraits(), MemManager(alloc))
116  {
117  }
118 
119  explicit set(const key_compare& lessFunc, const allocator_type& alloc = allocator_type())
120  : mTreeSet(TreeTraits(lessFunc), MemManager(alloc))
121  {
122  }
123 
124  template<typename Iterator>
125  set(Iterator first, Iterator last, const allocator_type& alloc = allocator_type())
126  : set(alloc)
127  {
128  insert(first, last);
129  }
130 
131  template<typename Iterator>
132  set(Iterator first, Iterator last, const key_compare& lessFunc,
133  const allocator_type& alloc = allocator_type())
134  : set(lessFunc, alloc)
135  {
136  insert(first, last);
137  }
138 
139  set(std::initializer_list<momo::internal::Identity<value_type>> values,
140  const allocator_type& alloc = allocator_type())
141  : mTreeSet(values, TreeTraits(), MemManager(alloc))
142  {
143  }
144 
145  set(std::initializer_list<momo::internal::Identity<value_type>> values,
146  const key_compare& lessFunc, const allocator_type& alloc = allocator_type())
147  : mTreeSet(values, TreeTraits(lessFunc), MemManager(alloc))
148  {
149  }
150 
151 #ifdef MOMO_HAS_CONTAINERS_RANGES
152  template<std::ranges::input_range Range>
153  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
154  set(std::from_range_t, Range&& values, const allocator_type& alloc = allocator_type())
155  : set(alloc)
156  {
157  insert_range(std::forward<Range>(values));
158  }
159 
160  template<std::ranges::input_range Range>
161  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
162  set(std::from_range_t, Range&& values, const key_compare& lessFunc,
163  const allocator_type& alloc = allocator_type())
164  : set(lessFunc, alloc)
165  {
166  insert_range(std::forward<Range>(values));
167  }
168 #endif // MOMO_HAS_CONTAINERS_RANGES
169 
170  set(set&& right) noexcept
171  : mTreeSet(std::move(right.mTreeSet))
172  {
173  }
174 
176  noexcept(std::is_empty<allocator_type>::value)
177  : mTreeSet(pvCreateSet(std::move(right), alloc))
178  {
179  }
180 
181  set(const set& right)
182  : mTreeSet(right.mTreeSet)
183  {
184  }
185 
187  : mTreeSet(right.mTreeSet, MemManager(alloc))
188  {
189  }
190 
191  ~set() = default;
192 
193  set& operator=(set&& right)
194  noexcept(std::is_empty<allocator_type>::value ||
195  std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value)
196  {
197  if (this != &right)
198  {
199  bool propagate = std::is_empty<allocator_type>::value ||
200  std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::value;
201  allocator_type alloc = (propagate ? &right : this)->get_allocator();
202  mTreeSet = pvCreateSet(std::move(right), alloc);
203  }
204  return *this;
205  }
206 
207  set& operator=(const set& right)
208  {
209  if (this != &right)
210  {
211  bool propagate = std::is_empty<allocator_type>::value ||
212  std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::value;
213  allocator_type alloc = (propagate ? &right : this)->get_allocator();
214  mTreeSet = TreeSet(right.mTreeSet, MemManager(alloc));
215  }
216  return *this;
217  }
218 
219  set& operator=(std::initializer_list<value_type> values)
220  {
221  mTreeSet = TreeSet(values, mTreeSet.GetTreeTraits(), MemManager(get_allocator()));
222  return *this;
223  }
224 
225  void swap(set& right) noexcept
226  {
227  MOMO_ASSERT(std::allocator_traits<allocator_type>::propagate_on_container_swap::value
228  || get_allocator() == right.get_allocator());
229  mTreeSet.Swap(right.mTreeSet);
230  }
231 
232  friend void swap(set& left, set& right) noexcept
233  {
234  left.swap(right);
235  }
236 
238  {
239  return mTreeSet;
240  }
241 
243  {
244  return mTreeSet;
245  }
246 
247  const_iterator begin() const noexcept
248  {
249  return mTreeSet.GetBegin();
250  }
251 
252  //iterator begin() noexcept
253 
254  const_iterator end() const noexcept
255  {
256  return mTreeSet.GetEnd();
257  }
258 
259  //iterator end() noexcept
260 
262  {
263  return const_reverse_iterator(end());
264  }
265 
266  //reverse_iterator rbegin() noexcept
267 
268  const_reverse_iterator rend() const noexcept
269  {
270  return const_reverse_iterator(begin());
271  }
272 
273  //reverse_iterator rend() noexcept
274 
275  const_iterator cbegin() const noexcept
276  {
277  return begin();
278  }
279 
280  const_iterator cend() const noexcept
281  {
282  return end();
283  }
284 
286  {
287  return rbegin();
288  }
289 
290  const_reverse_iterator crend() const noexcept
291  {
292  return rend();
293  }
294 
296  {
297  return mTreeSet.GetTreeTraits().GetLessFunc();
298  }
299 
301  {
302  return key_comp();
303  }
304 
305  allocator_type get_allocator() const noexcept
306  {
307  return allocator_type(mTreeSet.GetMemManager().GetByteAllocator());
308  }
309 
310  size_type max_size() const noexcept
311  {
312  return std::allocator_traits<allocator_type>::max_size(get_allocator());
313  }
314 
315  size_type size() const noexcept
316  {
317  return mTreeSet.GetCount();
318  }
319 
320  MOMO_NODISCARD bool empty() const noexcept
321  {
322  return mTreeSet.IsEmpty();
323  }
324 
325  void clear() noexcept
326  {
327  mTreeSet.Clear();
328  }
329 
330  const_iterator find(const key_type& key) const
331  {
332  return mTreeSet.Find(key);
333  }
334 
335  //iterator find(const key_type& key)
336 
337  template<typename KeyArg>
339  const_iterator> find(const KeyArg& key) const
340  {
341  return mTreeSet.Find(key);
342  }
343 
344  //template<typename KeyArg>
345  //momo::internal::EnableIf<IsValidKeyArg<KeyArg>::value,
346  //iterator> find(const KeyArg& key)
347 
348  size_type count(const key_type& key) const
349  {
350  return mTreeSet.GetKeyCount(key);
351  }
352 
353  template<typename KeyArg>
355  size_type> count(const KeyArg& key) const
356  {
357  return mTreeSet.GetKeyCount(key);
358  }
359 
360  bool contains(const key_type& key) const
361  {
362  return mTreeSet.ContainsKey(key);
363  }
364 
365  template<typename KeyArg>
367  bool> contains(const KeyArg& key) const
368  {
369  return mTreeSet.ContainsKey(key);
370  }
371 
373  {
374  return mTreeSet.GetLowerBound(key);
375  }
376 
377  //iterator lower_bound(const key_type& key)
378 
379  template<typename KeyArg>
381  const_iterator> lower_bound(const KeyArg& key) const
382  {
383  return mTreeSet.GetLowerBound(key);
384  }
385 
386  //template<typename KeyArg>
387  //momo::internal::EnableIf<IsValidKeyArg<KeyArg>::value,
388  //iterator> lower_bound(const KeyArg& key)
389 
391  {
392  return mTreeSet.GetUpperBound(key);
393  }
394 
395  //iterator upper_bound(const key_type& key)
396 
397  template<typename KeyArg>
399  const_iterator> upper_bound(const KeyArg& key) const
400  {
401  return mTreeSet.GetUpperBound(key);
402  }
403 
404  //template<typename KeyArg>
405  //momo::internal::EnableIf<IsValidKeyArg<KeyArg>::value,
406  //iterator> upper_bound(const KeyArg& key)
407 
408  std::pair<const_iterator, const_iterator> equal_range(const key_type& key) const
409  {
410  const_iterator iter = lower_bound(key);
412  return { iter, upper_bound(key) };
413  if (iter == end() || mTreeSet.GetTreeTraits().IsLess(key, *iter))
414  return { iter, iter };
415  return { iter, std::next(iter) };
416  }
417 
418  //std::pair<iterator, iterator> equal_range(const key_type& key)
419 
420  template<typename KeyArg>
422  std::pair<const_iterator, const_iterator>> equal_range(const KeyArg& key) const
423  {
424  return { lower_bound(key), upper_bound(key) };
425  }
426 
427  //template<typename KeyArg>
428  //momo::internal::EnableIf<IsValidKeyArg<KeyArg>::value,
429  //std::pair<iterator, iterator>> equal_range(const KeyArg& key)
430 
431  std::pair<iterator, bool> insert(value_type&& value)
432  {
433  typename TreeSet::InsertResult res = mTreeSet.Insert(std::move(value));
434  return { res.position, res.inserted };
435  }
436 
438  {
439  if (!pvCheckHint(hint, static_cast<const key_type&>(value)))
440  return insert(std::move(value)).first;
441  return mTreeSet.Add(hint, std::move(value));
442  }
443 
444  std::pair<iterator, bool> insert(const value_type& value)
445  {
446  typename TreeSet::InsertResult res = mTreeSet.Insert(value);
447  return { res.position, res.inserted };
448  }
449 
451  {
452  if (!pvCheckHint(hint, value))
453  return insert(value).first;
454  return mTreeSet.Add(hint, value);
455  }
456 
458  {
459  if (node.empty())
460  return { end(), false, node_type() };
461  typename TreeSet::InsertResult res = mTreeSet.Insert(
462  std::move(NodeTypeProxy::GetExtractedItem(node)));
463  return { res.position, res.inserted, res.inserted ? node_type() : std::move(node) };
464  }
465 
467  {
468  if (node.empty())
469  return end();
470  if (!pvCheckHint(hint, node.value()))
471  return insert(std::move(node)).position;
472  return mTreeSet.Add(hint, std::move(NodeTypeProxy::GetExtractedItem(node)));
473  }
474 
475  template<typename Iterator>
476  void insert(Iterator first, Iterator last)
477  {
478  pvInsertRange(first, last);
479  }
480 
481  void insert(std::initializer_list<value_type> values)
482  {
483  mTreeSet.Insert(values);
484  }
485 
486 #ifdef MOMO_HAS_CONTAINERS_RANGES
487  template<std::ranges::input_range Range>
488  requires std::convertible_to<std::ranges::range_reference_t<Range>, value_type>
489  void insert_range(Range&& values)
490  {
491  pvInsertRange(std::ranges::begin(values), std::ranges::end(values));
492  }
493 #endif // MOMO_HAS_CONTAINERS_RANGES
494 
495  template<typename... ValueArgs>
496  std::pair<iterator, bool> emplace(ValueArgs&&... valueArgs)
497  {
498  MemManager& memManager = mTreeSet.GetMemManager();
499  typename TreeSet::ExtractedItem extItem;
500  typedef typename TreeSet::ItemTraits::template Creator<ValueArgs...> ValueCreator;
501  extItem.Create(ValueCreator(memManager, std::forward<ValueArgs>(valueArgs)...));
502  typename TreeSet::InsertResult res = mTreeSet.Insert(std::move(extItem));
503  return { res.position, res.inserted };
504  }
505 
506  template<typename ValueArg>
508  std::pair<iterator, bool>> emplace(ValueArg&& valueArg)
509  {
510  typename TreeSet::InsertResult res = mTreeSet.InsertVar(
511  static_cast<const key_type&>(valueArg), std::forward<ValueArg>(valueArg));
512  return { res.position, res.inserted };
513  }
514 
515  template<typename... ValueArgs>
516  iterator emplace_hint(const_iterator hint, ValueArgs&&... valueArgs)
517  {
518  MemManager& memManager = mTreeSet.GetMemManager();
519  typename TreeSet::ExtractedItem extItem;
520  typedef typename TreeSet::ItemTraits::template Creator<ValueArgs...> ValueCreator;
521  extItem.Create(ValueCreator(memManager, std::forward<ValueArgs>(valueArgs)...));
522  if (!pvCheckHint(hint, extItem.GetItem()))
523  return mTreeSet.Insert(std::move(extItem)).position;
524  return mTreeSet.Add(hint, std::move(extItem));
525  }
526 
527  template<typename ValueArg>
529  iterator> emplace_hint(const_iterator hint, ValueArg&& valueArg)
530  {
531  if (!pvCheckHint(hint, static_cast<const key_type&>(valueArg)))
532  return emplace(std::forward<ValueArg>(valueArg)).first;
533  return mTreeSet.AddVar(hint, std::forward<ValueArg>(valueArg));
534  }
535 
537  {
538  return mTreeSet.Remove(where);
539  }
540 
541  //iterator erase(iterator where)
542 
544  {
545  return mTreeSet.Remove(first, last);
546  }
547 
549  {
550  return mTreeSet.Remove(key);
551  }
552 
553  template<typename ValueFilter>
554  friend size_type erase_if(set& cont, const ValueFilter& valueFilter)
555  {
556  return cont.mTreeSet.Remove(valueFilter);
557  }
558 
560  {
561  return node_type(*this, where); // need RVO for exception safety
562  }
563 
565  {
566  const_iterator iter = find(key);
567  return (iter != end()) ? extract(iter) : node_type();
568  }
569 
570  template<typename Set>
571  void merge(Set&& set)
572  {
573  mTreeSet.MergeFrom(set.get_nested_container());
574  }
575 
576  friend bool operator==(const set& left, const set& right)
577  {
578  return left.size() == right.size() && std::equal(left.begin(), left.end(), right.begin());
579  }
580 
581 #ifdef MOMO_HAS_THREE_WAY_COMPARISON
582  friend auto operator<=>(const set& left, const set& right)
583  requires requires (const_reference ref) { std::tie(ref) <=> std::tie(ref); }
584  {
585  auto comp = [] (const value_type& value1, const value_type& value2)
586  { return std::tie(value1) <=> std::tie(value2); };
587  return std::lexicographical_compare_three_way(left.begin(), left.end(),
588  right.begin(), right.end(), comp);
589  }
590 #else
591  friend bool operator<(const set& left, const set& right)
592  {
593  return std::lexicographical_compare(left.begin(), left.end(), right.begin(), right.end());
594  }
595 #endif
596 
598 
599 private:
600  static TreeSet pvCreateSet(set&& right, const allocator_type& alloc)
601  {
602  if (right.get_allocator() == alloc)
603  return std::move(right.mTreeSet);
604  TreeSet treeSet(right.mTreeSet.GetTreeTraits(), MemManager(alloc));
605  treeSet.MergeFrom(right.mTreeSet);
606  return treeSet;
607  }
608 
609  bool pvIsOrdered(const key_type& key1, const key_type& key2) const
610  {
611  const TreeTraits& treeTraits = mTreeSet.GetTreeTraits();
612  return TreeTraits::multiKey ? !treeTraits.IsLess(key2, key1)
613  : treeTraits.IsLess(key1, key2);
614  }
615 
616  bool pvCheckHint(const_iterator& hint, const key_type& key) const
617  {
618  if (hint != begin() && !pvIsOrdered(*std::prev(hint), key))
619  return false;
620  if (hint != end() && !pvIsOrdered(key, *hint))
621  {
623  hint = lower_bound(key);
624  return TreeTraits::multiKey;
625  }
626  return true;
627  }
628 
629  template<typename Iterator, typename Sentinel>
631  void> pvInsertRange(Iterator begin, Sentinel end)
632  {
633  mTreeSet.Insert(std::move(begin), std::move(end));
634  }
635 
636  template<typename Iterator, typename Sentinel>
638  void> pvInsertRange(Iterator begin, Sentinel end)
639  {
640  for (Iterator iter = std::move(begin); iter != end; ++iter)
641  emplace(*iter);
642  }
643 
644 private:
645  TreeSet mTreeSet;
646 };
647 
656 template<typename TKey,
657  typename TLessFunc = std::less<TKey>,
658  typename TAllocator = std::allocator<TKey>,
659  typename TTreeSet = TreeSet<TKey, TreeTraitsStd<TKey, TLessFunc, true>,
660  MemManagerStd<TAllocator>>>
661 class multiset : public set<TKey, TLessFunc, TAllocator, TTreeSet>
662 {
663 private:
665 
666 public:
667  using typename Set::size_type;
668  using typename Set::value_type;
669  using typename Set::iterator;
670  using typename Set::node_type;
671 
673 
674 public:
675  using Set::Set;
676 
677  multiset& operator=(std::initializer_list<value_type> values)
678  {
679  Set::operator=(values);
680  return *this;
681  }
682 
683  friend void swap(multiset& left, multiset& right) noexcept
684  {
685  left.swap(right);
686  }
687 
688  using Set::insert;
689 
691  {
692  return Set::insert(std::move(value)).first;
693  }
694 
695  iterator insert(const value_type& value)
696  {
697  return Set::insert(value).first;
698  }
699 
701  {
702  return Set::insert(std::move(node)).position;
703  }
704 
705  template<typename... ValueArgs>
706  iterator emplace(ValueArgs&&... valueArgs)
707  {
708  return Set::emplace(std::forward<ValueArgs>(valueArgs)...).first;
709  }
710 
711  template<typename ValueFilter>
712  friend size_type erase_if(multiset& cont, const ValueFilter& valueFilter)
713  {
714  return cont.get_nested_container().Remove(valueFilter);
715  }
716 };
717 
718 #ifdef MOMO_HAS_DEDUCTION_GUIDES
719 
720 #define MOMO_DECLARE_DEDUCTION_GUIDES(set) \
721 template<typename Iterator, \
722  typename Key = typename std::iterator_traits<Iterator>::value_type, \
723  typename Allocator = std::allocator<Key>, \
724  typename = internal::ordered_checker<Key, Allocator>> \
725 set(Iterator, Iterator, Allocator = Allocator()) \
726  -> set<Key, std::less<Key>, Allocator>; \
727 template<typename Iterator, typename LessFunc, \
728  typename Key = typename std::iterator_traits<Iterator>::value_type, \
729  typename Allocator = std::allocator<Key>, \
730  typename = internal::ordered_checker<Key, Allocator, LessFunc>> \
731 set(Iterator, Iterator, LessFunc, Allocator = Allocator()) \
732  -> set<Key, LessFunc, Allocator>; \
733 template<typename Key, \
734  typename Allocator = std::allocator<Key>, \
735  typename = internal::ordered_checker<Key, Allocator>> \
736 set(std::initializer_list<Key>, Allocator = Allocator()) \
737  -> set<Key, std::less<Key>, Allocator>; \
738 template<typename Key, typename LessFunc, \
739  typename Allocator = std::allocator<Key>, \
740  typename = internal::ordered_checker<Key, Allocator, LessFunc>> \
741 set(std::initializer_list<Key>, LessFunc, Allocator = Allocator()) \
742  -> set<Key, LessFunc, Allocator>;
743 
744 MOMO_DECLARE_DEDUCTION_GUIDES(set)
745 MOMO_DECLARE_DEDUCTION_GUIDES(multiset)
746 
747 #undef MOMO_DECLARE_DEDUCTION_GUIDES
748 
749 #ifdef MOMO_HAS_CONTAINERS_RANGES
750 
751 #define MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(set) \
752 template<std::ranges::input_range Range, \
753  typename Key = std::ranges::range_value_t<Range>, \
754  typename Allocator = std::allocator<Key>, \
755  typename = internal::ordered_checker<Key, Allocator>> \
756 set(std::from_range_t, Range&&, Allocator = Allocator()) \
757  -> set<Key, std::less<Key>, Allocator>; \
758 template<std::ranges::input_range Range, typename LessFunc, \
759  typename Key = std::ranges::range_value_t<Range>, \
760  typename Allocator = std::allocator<Key>, \
761  typename = internal::ordered_checker<Key, Allocator, LessFunc>> \
762 set(std::from_range_t, Range&&, LessFunc, Allocator = Allocator()) \
763  -> set<Key, LessFunc, Allocator>;
764 
765 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(set)
766 MOMO_DECLARE_DEDUCTION_GUIDES_RANGES(multiset)
767 
768 #undef MOMO_DECLARE_DEDUCTION_GUIDES_RANGES
769 
770 #endif // MOMO_HAS_CONTAINERS_RANGES
771 
772 #endif // MOMO_HAS_DEDUCTION_GUIDES
773 
774 } // namespace stdish
775 
776 } // namespace momo
777 
778 #endif // MOMO_INCLUDE_GUARD_STDISH_SET
momo::stdish::set::crbegin
const_reverse_iterator crbegin() const noexcept
Definition: set.h:285
momo::internal::InsertResult::position
Position position
Definition: IteratorUtility.h:168
momo::stdish::set::get_allocator
allocator_type get_allocator() const noexcept
Definition: set.h:305
momo::internal::TreeSetConstIterator::Pointer
const Item * Pointer
Definition: TreeSet.h:41
momo::stdish::set::emplace_hint
momo::internal::EnableIf< std::is_same< key_type, typename std::decay< ValueArg >::type >::value, iterator > emplace_hint(const_iterator hint, ValueArg &&valueArg)
Definition: set.h:529
momo::TreeTraits::IsLess
bool IsLess(const KeyArg1 &key1, const KeyArg2 &key2) const
Definition: TreeTraits.h:107
momo::stdish::set::contains
bool contains(const key_type &key) const
Definition: set.h:360
momo::stdish::set::find
const_iterator find(const key_type &key) const
Definition: set.h:330
momo::stdish::set::difference_type
ptrdiff_t difference_type
Definition: set.h:72
momo::internal::TreeSetConstIterator::Reference
const Item & Reference
Definition: TreeSet.h:40
momo::stdish::set::crend
const_reverse_iterator crend() const noexcept
Definition: set.h:290
momo::stdish::multiset::operator=
multiset & operator=(std::initializer_list< value_type > values)
Definition: set.h:677
momo::stdish::set::upper_bound
momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, const_iterator > upper_bound(const KeyArg &key) const
Definition: set.h:399
momo::stdish::set::empty
MOMO_NODISCARD bool empty() const noexcept
Definition: set.h:320
set_map_utility.h
momo::stdish::set::equal_range
std::pair< const_iterator, const_iterator > equal_range(const key_type &key) const
Definition: set.h:408
momo::stdish::multiset::insert
iterator insert(node_type &&node)
Definition: set.h:700
momo::stdish::set::extract
node_type extract(const_iterator where)
Definition: set.h:559
momo::stdish::set::emplace_hint
iterator emplace_hint(const_iterator hint, ValueArgs &&... valueArgs)
Definition: set.h:516
momo::stdish::internal::insert_return_type
Definition: set_map_utility.h:194
momo::stdish::set::value_compare
key_compare value_compare
Definition: set.h:75
momo::stdish::set::clear
void clear() noexcept
Definition: set.h:325
momo::stdish::set::pointer
value_type * pointer
Definition: set.h:85
momo::stdish::set::size_type
size_t size_type
Definition: set.h:71
momo::stdish::set::value_type
key_type value_type
Definition: set.h:74
momo::stdish::set::reference
value_type & reference
Definition: set.h:81
momo::stdish::set::begin
const_iterator begin() const noexcept
Definition: set.h:247
momo::stdish::set
momo::stdish::set is similar to std::set, but much more efficient in memory usage....
Definition: set.h:58
momo::stdish::set::merge
void merge(Set &&set)
Definition: set.h:571
momo::TreeTraits
Definition: TreeTraits.h:82
momo::internal::SetExtractedItem::GetItem
const Item & GetItem() const
Definition: SetUtility.h:308
momo::stdish::set::set
set(std::initializer_list< momo::internal::Identity< value_type >> values, const key_compare &lessFunc, const allocator_type &alloc=allocator_type())
Definition: set.h:145
momo::stdish::set::operator=
set & operator=(std::initializer_list< value_type > values)
Definition: set.h:219
momo::stdish::set::count
size_type count(const key_type &key) const
Definition: set.h:348
momo::internal::InsertResult
Definition: IteratorUtility.h:136
momo::stdish::set::emplace
momo::internal::EnableIf< std::is_same< key_type, typename std::decay< ValueArg >::type >::value, std::pair< iterator, bool > > emplace(ValueArg &&valueArg)
Definition: set.h:508
momo::stdish::set::set
set(Iterator first, Iterator last, const allocator_type &alloc=allocator_type())
Definition: set.h:125
momo::stdish::multiset::emplace
iterator emplace(ValueArgs &&... valueArgs)
Definition: set.h:706
momo::stdish::set::set
set(std::initializer_list< momo::internal::Identity< value_type >> values, const allocator_type &alloc=allocator_type())
Definition: set.h:139
momo::stdish::multiset
momo::stdish::multiset is similar to std::multiset, but much more efficient in memory usage....
Definition: set.h:662
momo::stdish::set::get_nested_container
nested_container_type & get_nested_container() noexcept
Definition: set.h:242
momo::stdish::set::set
set(const set &right, const momo::internal::Identity< allocator_type > &alloc)
Definition: set.h:186
momo::stdish::multiset::erase_if
friend size_type erase_if(multiset &cont, const ValueFilter &valueFilter)
Definition: set.h:712
momo::stdish::set::set
set(const set &right)
Definition: set.h:181
momo::internal::EnableIf
typename std::enable_if< value, Type >::type EnableIf
Definition: Utility.h:198
momo::stdish::set::set
set(const key_compare &lessFunc, const allocator_type &alloc=allocator_type())
Definition: set.h:119
momo::stdish::multiset::insert_return_type
iterator insert_return_type
Definition: set.h:672
momo
Definition: Array.h:26
momo::stdish::set::key_comp
key_compare key_comp() const
Definition: set.h:295
momo::stdish::multiset::swap
friend void swap(multiset &left, multiset &right) noexcept
Definition: set.h:683
momo::stdish::set::key_type
TKey key_type
Definition: set.h:65
momo::stdish::set::allocator_type
TAllocator allocator_type
Definition: set.h:67
momo::stdish::set::const_reference
const_iterator::Reference const_reference
Definition: set.h:82
momo::stdish::set::get_nested_container
const nested_container_type & get_nested_container() const noexcept
Definition: set.h:237
momo::internal::InsertResult::inserted
bool inserted
Definition: IteratorUtility.h:171
momo::internal::Identity
EnableIf< true, Type > Identity
Definition: Utility.h:201
momo::stdish::set::size
size_type size() const noexcept
Definition: set.h:315
momo::stdish::set::nested_container_type
TreeSet nested_container_type
Definition: set.h:69
momo::stdish::set::operator=
set & operator=(set &&right) noexcept(std::is_empty< allocator_type >::value||std::allocator_traits< allocator_type >::propagate_on_container_move_assignment::value)
Definition: set.h:193
momo::stdish::set::lower_bound
momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, const_iterator > lower_bound(const KeyArg &key) const
Definition: set.h:381
momo::stdish::set::cend
const_iterator cend() const noexcept
Definition: set.h:280
momo::stdish::set::set
set(const allocator_type &alloc)
Definition: set.h:114
momo::stdish::set::upper_bound
const_iterator upper_bound(const key_type &key) const
Definition: set.h:390
momo::stdish::set::count
momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, size_type > count(const KeyArg &key) const
Definition: set.h:355
momo::stdish::set::value_comp
value_compare value_comp() const
Definition: set.h:300
momo::stdish::set::extract
node_type extract(const key_type &key)
Definition: set.h:564
momo::stdish::internal::set_node_handle::SetExtractedItem
TSetExtractedItem SetExtractedItem
Definition: set_map_utility.h:35
momo::stdish::set::emplace
std::pair< iterator, bool > emplace(ValueArgs &&... valueArgs)
Definition: set.h:496
momo::stdish::set::operator=
set & operator=(const set &right)
Definition: set.h:207
momo::stdish::set::cbegin
const_iterator cbegin() const noexcept
Definition: set.h:275
momo::stdish::set::rbegin
const_reverse_iterator rbegin() const noexcept
Definition: set.h:261
momo::stdish::set::node_type
internal::set_node_handle< typename TreeSet::ExtractedItem > node_type
Definition: set.h:93
momo::stdish::set::set
set(set &&right, const momo::internal::Identity< allocator_type > &alloc) noexcept(std::is_empty< allocator_type >::value)
Definition: set.h:175
momo::stdish::set::erase
size_type erase(const key_type &key)
Definition: set.h:548
momo::stdish::set::key_compare
TLessFunc key_compare
Definition: set.h:66
std
Definition: ArrayUtility.h:308
momo::stdish::set::const_pointer
const_iterator::Pointer const_pointer
Definition: set.h:86
momo::stdish::multiset::value_type
key_type value_type
Definition: set.h:74
momo::stdish::multiset::insert
iterator insert(const value_type &value)
Definition: set.h:695
momo::internal::SetExtractedItem::Create
void Create(ItemCreator &&itemCreator)
Definition: SetUtility.h:321
momo::stdish::set::erase
iterator erase(const_iterator where)
Definition: set.h:536
momo::stdish::set::equal_range
momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, std::pair< const_iterator, const_iterator > > equal_range(const KeyArg &key) const
Definition: set.h:422
momo::stdish::set::iterator
TreeSet::Iterator iterator
Definition: set.h:78
momo::stdish::multiset::size_type
size_t size_type
Definition: set.h:71
momo::stdish::multiset::insert
iterator insert(value_type &&value)
Definition: set.h:690
momo::TreeSet
Definition: TreeSet.h:296
momo::stdish::set::operator<
friend bool operator<(const set &left, const set &right)
Definition: set.h:591
momo::stdish::set::const_iterator
TreeSet::ConstIterator const_iterator
Definition: set.h:77
momo::stdish::set::swap
friend void swap(set &left, set &right) noexcept
Definition: set.h:232
momo::stdish::internal::set_node_handle
Definition: set_map_utility.h:33
momo::TreeSet::MemManager
TMemManager MemManager
Definition: TreeSet.h:300
momo::stdish::set::operator==
friend bool operator==(const set &left, const set &right)
Definition: set.h:576
momo::internal::TreeSetConstIterator
Definition: TreeSet.h:33
MOMO_MORE_COMPARISON_OPERATORS
#define MOMO_MORE_COMPARISON_OPERATORS(ObjectArg)
Definition: Utility.h:77
momo::stdish::set::~set
~set()=default
momo::stdish::set::lower_bound
const_iterator lower_bound(const key_type &key) const
Definition: set.h:372
momo::stdish::set::max_size
size_type max_size() const noexcept
Definition: set.h:310
momo::stdish::set::contains
momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, bool > contains(const KeyArg &key) const
Definition: set.h:367
momo::stdish::set::erase_if
friend size_type erase_if(set &cont, const ValueFilter &valueFilter)
Definition: set.h:554
momo::stdish::set::set
set(set &&right) noexcept
Definition: set.h:170
momo::TreeTraits::multiKey
static const bool multiKey
Definition: TreeTraits.h:87
momo::stdish::set::insert_return_type
internal::insert_return_type< iterator, node_type > insert_return_type
Definition: set.h:94
MOMO_ASSERT
#define MOMO_ASSERT(expr)
Definition: UserSettings.h:162
MOMO_DECLARE_PROXY_FUNCTION
#define MOMO_DECLARE_PROXY_FUNCTION(Object, Func, Result)
Definition: Utility.h:116
momo::stdish::set::insert
std::pair< iterator, bool > insert(value_type &&value)
Definition: set.h:431
momo::internal::SetExtractedItem
Definition: SetUtility.h:256
momo::stdish::set::set
set(Iterator first, Iterator last, const key_compare &lessFunc, const allocator_type &alloc=allocator_type())
Definition: set.h:132
momo::stdish::set::find
momo::internal::EnableIf< IsValidKeyArg< KeyArg >::value, const_iterator > find(const KeyArg &key) const
Definition: set.h:339
momo::stdish::set::reverse_iterator
std::reverse_iterator< iterator > reverse_iterator
Definition: set.h:90
momo::stdish::set::swap
void swap(set &right) noexcept
Definition: set.h:225
momo::stdish::set::end
const_iterator end() const noexcept
Definition: set.h:254
momo::stdish::set::rend
const_reverse_iterator rend() const noexcept
Definition: set.h:268
momo::stdish::set::const_reverse_iterator
std::reverse_iterator< const_iterator > const_reverse_iterator
Definition: set.h:91
MOMO_NODISCARD
#define MOMO_NODISCARD
Definition: UserSettings.h:203
momo::stdish::set::set
set()
Definition: set.h:110
momo::TreeSet::TreeTraits
TTreeTraits TreeTraits
Definition: TreeSet.h:299
momo::stdish::set::erase
iterator erase(const_iterator first, const_iterator last)
Definition: set.h:543