-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmap.h
844 lines (674 loc) · 31.9 KB
/
map.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
//////////////////////////////////////////////////////////////////////////////
#ifndef EASTL_MAP_H
#define EASTL_MAP_H
#include <eastl/internal/config.h>
#include <eastl/internal/red_black_tree.h>
#include <eastl/functional.h>
#include <eastl/utility.h>
#if EASTL_EXCEPTIONS_ENABLED
#include <stdexcept>
#endif
#if defined(EASTL_PRAGMA_ONCE_SUPPORTED)
#pragma once // Some compilers (e.g. VC++) benefit significantly from using this. We've measured 3-4% build speed improvements in apps as a result.
#endif
namespace eastl
{
/// EASTL_MAP_DEFAULT_NAME
///
/// Defines a default container name in the absence of a user-provided name.
///
#ifndef EASTL_MAP_DEFAULT_NAME
#define EASTL_MAP_DEFAULT_NAME EASTL_DEFAULT_NAME_PREFIX " map" // Unless the user overrides something, this is "EASTL map".
#endif
/// EASTL_MULTIMAP_DEFAULT_NAME
///
/// Defines a default container name in the absence of a user-provided name.
///
#ifndef EASTL_MULTIMAP_DEFAULT_NAME
#define EASTL_MULTIMAP_DEFAULT_NAME EASTL_DEFAULT_NAME_PREFIX " multimap" // Unless the user overrides something, this is "EASTL multimap".
#endif
/// EASTL_MAP_DEFAULT_ALLOCATOR
///
#ifndef EASTL_MAP_DEFAULT_ALLOCATOR
#define EASTL_MAP_DEFAULT_ALLOCATOR allocator_type(EASTL_MAP_DEFAULT_NAME)
#endif
/// EASTL_MULTIMAP_DEFAULT_ALLOCATOR
///
#ifndef EASTL_MULTIMAP_DEFAULT_ALLOCATOR
#define EASTL_MULTIMAP_DEFAULT_ALLOCATOR allocator_type(EASTL_MULTIMAP_DEFAULT_NAME)
#endif
/// map
///
/// Implements a canonical map.
///
/// The large majority of the implementation of this class is found in the rbtree
/// base class. We control the behaviour of rbtree via template parameters.
///
/// Pool allocation
/// If you want to make a custom memory pool for a map container, your pool
/// needs to contain items of type map::node_type. So if you have a memory
/// pool that has a constructor that takes the size of pool items and the
/// count of pool items, you would do this (assuming that MemoryPool implements
/// the Allocator interface):
/// typedef map<Widget, int, less<Widget>, MemoryPool> WidgetMap; // Delare your WidgetMap type.
/// MemoryPool myPool(sizeof(WidgetMap::node_type), 100); // Make a pool of 100 Widget nodes.
/// WidgetMap myMap(&myPool); // Create a map that uses the pool.
///
template <typename Key, typename T, typename Compare = eastl::less<Key>, typename Allocator = EASTLAllocatorType>
class map
: public rbtree<Key, eastl::pair<const Key, T>, Compare, Allocator, eastl::useFirst<eastl::pair<const Key, T> >, true, true>
{
public:
typedef rbtree<Key, eastl::pair<const Key, T>, Compare, Allocator,
eastl::useFirst<eastl::pair<const Key, T> >, true, true> base_type;
typedef map<Key, T, Compare, Allocator> this_type;
typedef typename base_type::size_type size_type;
typedef typename base_type::key_type key_type;
typedef T mapped_type;
typedef typename base_type::value_type value_type;
typedef typename base_type::node_type node_type;
typedef typename base_type::iterator iterator;
typedef typename base_type::const_iterator const_iterator;
typedef typename base_type::allocator_type allocator_type;
typedef typename base_type::insert_return_type insert_return_type;
typedef typename base_type::extract_key extract_key;
// Other types are inherited from the base class.
using base_type::begin;
using base_type::end;
using base_type::find;
using base_type::lowerBound;
using base_type::upperBound;
using base_type::insert;
using base_type::erase;
protected:
using base_type::compare;
using base_type::get_compare;
public:
class value_compare
{
protected:
friend class map;
Compare compare;
value_compare(Compare c) : compare(c) {}
public:
EASTL_REMOVE_AT_2024_APRIL typedef bool result_type;
EASTL_REMOVE_AT_2024_APRIL typedef value_type first_argument_type;
EASTL_REMOVE_AT_2024_APRIL typedef value_type second_argument_type;
bool operator()(const value_type& x, const value_type& y) const
{ return compare(x.first, y.first); }
};
public:
map(const allocator_type& allocator = EASTL_MAP_DEFAULT_ALLOCATOR);
map(const Compare& compare, const allocator_type& allocator = EASTL_MAP_DEFAULT_ALLOCATOR);
map(const this_type& x);
map(this_type&& x);
map(this_type&& x, const allocator_type& allocator);
map(std::initializer_list<value_type> ilist, const Compare& compare = Compare(), const allocator_type& allocator = EASTL_MAP_DEFAULT_ALLOCATOR);
map(std::initializer_list<value_type> ilist, const allocator_type& allocator);
template <typename Iterator>
map(Iterator itBegin, Iterator itEnd); // allocator arg removed because VC7.1 fails on the default arg. To consider: Make a second version of this function without a default arg.
// missing constructors, to implement:
//
// map(const this_type& x, const allocator_type& allocator);
//
// template <typename InputIterator>
// map(InputIterator first, InputIterator last, const Compare& comp = Compare(), const Allocator& alloc = Allocator());
//
// template <typename InputIterator>
// map(InputIterator first, InputIterator last, const Allocator& alloc);
this_type& operator=(const this_type& x) { return (this_type&)base_type::operator=(x); }
this_type& operator=(std::initializer_list<value_type> ilist) { return (this_type&)base_type::operator=(ilist); }
this_type& operator=(this_type&& x) { return (this_type&)base_type::operator=(eastl::move(x)); }
public:
/// This is an extension to the C++ standard. We insert a default-constructed
/// element with the given key. The reason for this is that we can avoid the
/// potentially expensive operation of creating and/or copying a mapped_type
/// object on the stack. Note that C++11 move insertions and variadic emplace
/// support make this extension mostly no longer necessary.
insert_return_type insert(const Key& key);
value_compare value_comp() const;
size_type erase(const Key& key);
size_type count(const Key& key) const;
// missing transparent key support:
// template<typename K>
// size_type count(const K& k) const;
eastl::pair<iterator, iterator> equalRange(const Key& key);
eastl::pair<const_iterator, const_iterator> equalRange(const Key& key) const;
// missing transparent key support:
// template<typename K>
// eastl::pair<iterator, iterator> equalRange(const K& k);
// template<typename K>
// eastl::pair<const_iterator, const_iterator> equalRange(const K& k) const;
T& operator[](const Key& key); // Of map, multimap, set, and multimap, only map has operator[].
T& operator[](Key&& key);
T& at(const Key& key);
const T& at(const Key& key) const;
template <class... Args> eastl::pair<iterator, bool> try_emplace(const key_type& k, Args&&... args);
template <class... Args> eastl::pair<iterator, bool> try_emplace(key_type&& k, Args&&... args);
template <class... Args> iterator try_emplace(const_iterator position, const key_type& k, Args&&... args);
template <class... Args> iterator try_emplace(const_iterator position, key_type&& k, Args&&... args);
private:
template <class KFwd, class... Args>
eastl::pair<iterator, bool> try_emplace_forward(KFwd&& k, Args&&... args);
template <class KFwd, class... Args>
iterator try_emplace_forward(const_iterator hint, KFwd&& key, Args&&... args);
}; // map
/// multimap
///
/// Implements a canonical multimap.
///
/// The large majority of the implementation of this class is found in the rbtree
/// base class. We control the behaviour of rbtree via template parameters.
///
/// Pool allocation
/// If you want to make a custom memory pool for a multimap container, your pool
/// needs to contain items of type multimap::node_type. So if you have a memory
/// pool that has a constructor that takes the size of pool items and the
/// count of pool items, you would do this (assuming that MemoryPool implements
/// the Allocator interface):
/// typedef multimap<Widget, int, less<Widget>, MemoryPool> WidgetMap; // Delare your WidgetMap type.
/// MemoryPool myPool(sizeof(WidgetMap::node_type), 100); // Make a pool of 100 Widget nodes.
/// WidgetMap myMap(&myPool); // Create a map that uses the pool.
///
template <typename Key, typename T, typename Compare = eastl::less<Key>, typename Allocator = EASTLAllocatorType>
class multimap
: public rbtree<Key, eastl::pair<const Key, T>, Compare, Allocator, eastl::useFirst<eastl::pair<const Key, T> >, true, false>
{
public:
typedef rbtree<Key, eastl::pair<const Key, T>, Compare, Allocator,
eastl::useFirst<eastl::pair<const Key, T> >, true, false> base_type;
typedef multimap<Key, T, Compare, Allocator> this_type;
typedef typename base_type::size_type size_type;
typedef typename base_type::key_type key_type;
typedef T mapped_type;
typedef typename base_type::value_type value_type;
typedef typename base_type::node_type node_type;
typedef typename base_type::iterator iterator;
typedef typename base_type::const_iterator const_iterator;
typedef typename base_type::allocator_type allocator_type;
typedef typename base_type::insert_return_type insert_return_type;
typedef typename base_type::extract_key extract_key;
// Other types are inherited from the base class.
using base_type::begin;
using base_type::end;
using base_type::find;
using base_type::lowerBound;
using base_type::upperBound;
using base_type::insert;
using base_type::erase;
protected:
using base_type::compare;
using base_type::get_compare;
public:
class value_compare
{
protected:
friend class multimap;
Compare compare;
value_compare(Compare c) : compare(c) {}
public:
EASTL_REMOVE_AT_2024_APRIL typedef bool result_type;
EASTL_REMOVE_AT_2024_APRIL typedef value_type first_argument_type;
EASTL_REMOVE_AT_2024_APRIL typedef value_type second_argument_type;
bool operator()(const value_type& x, const value_type& y) const
{ return compare(x.first, y.first); }
};
public:
multimap(const allocator_type& allocator = EASTL_MULTIMAP_DEFAULT_ALLOCATOR);
multimap(const Compare& compare, const allocator_type& allocator = EASTL_MULTIMAP_DEFAULT_ALLOCATOR);
multimap(const this_type& x);
multimap(this_type&& x);
multimap(this_type&& x, const allocator_type& allocator);
multimap(std::initializer_list<value_type> ilist, const Compare& compare = Compare(), const allocator_type& allocator = EASTL_MULTIMAP_DEFAULT_ALLOCATOR);
multimap(std::initializer_list<value_type> ilist, const allocator_type& allocator);
template <typename Iterator>
multimap(Iterator itBegin, Iterator itEnd); // allocator arg removed because VC7.1 fails on the default arg. To consider: Make a second version of this function without a default arg.
// missing constructors, to implement:
//
// multimap(const this_type& x, const allocator_type& allocator);
//
// template <typename InputIterator>
// multimap(InputIterator first, InputIterator last, const Compare& comp = Compare(), const Allocator& alloc = Allocator());
//
// template <typename InputIterator>
// multimap(InputIterator first, InputIterator last, const Allocator& alloc);
this_type& operator=(const this_type& x) { return (this_type&)base_type::operator=(x); }
this_type& operator=(std::initializer_list<value_type> ilist) { return (this_type&)base_type::operator=(ilist); }
this_type& operator=(this_type&& x) { return (this_type&)base_type::operator=(eastl::move(x)); }
public:
/// This is an extension to the C++ standard. We insert a default-constructed
/// element with the given key. The reason for this is that we can avoid the
/// potentially expensive operation of creating and/or copying a mapped_type
/// object on the stack. Note that C++11 move insertions and variadic emplace
/// support make this extension mostly no longer necessary.
insert_return_type insert(const Key& key);
value_compare value_comp() const;
size_type erase(const Key& key);
size_type count(const Key& key) const;
// missing transparent key support:
// template<typename K>
// size_type count(const K& k) const;
eastl::pair<iterator, iterator> equalRange(const Key& key);
eastl::pair<const_iterator, const_iterator> equalRange(const Key& key) const;
// missing transparent key support:
// template<typename K>
// eastl::pair<iterator, iterator> equalRange(const K& k);
// template<typename K>
// eastl::pair<const_iterator, const_iterator> equalRange(const K& k) const;
/// equalRange_small
/// This is a special version of equalRange which is optimized for the
/// case of there being few or no duplicated keys in the tree.
eastl::pair<iterator, iterator> equalRange_small(const Key& key);
eastl::pair<const_iterator, const_iterator> equalRange_small(const Key& key) const;
// missing transparent key support:
// template<typename K>
// eastl::pair<iterator, iterator> equalRange_small(const K& k);
// template<typename K>
// eastl::pair<const_iterator, const_iterator> equalRange_small(const K& k) const;
private:
// these base member functions are not included in multimaps
using base_type::insert_or_assign;
}; // multimap
///////////////////////////////////////////////////////////////////////
// map
///////////////////////////////////////////////////////////////////////
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(const allocator_type& allocator)
: base_type(allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(const Compare& compare, const allocator_type& allocator)
: base_type(compare, allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(const this_type& x)
: base_type(x)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(this_type&& x)
: base_type(eastl::move(x))
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(this_type&& x, const allocator_type& allocator)
: base_type(eastl::move(x), allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(std::initializer_list<value_type> ilist, const Compare& compare, const allocator_type& allocator)
: base_type(ilist.begin(), ilist.end(), compare, allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline map<Key, T, Compare, Allocator>::map(std::initializer_list<value_type> ilist, const allocator_type& allocator)
: base_type(ilist.begin(), ilist.end(), Compare(), allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
template <typename Iterator>
inline map<Key, T, Compare, Allocator>::map(Iterator itBegin, Iterator itEnd)
: base_type(itBegin, itEnd, Compare(), EASTL_MAP_DEFAULT_ALLOCATOR)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename map<Key, T, Compare, Allocator>::insert_return_type
map<Key, T, Compare, Allocator>::insert(const Key& key)
{
return base_type::DoInsertKey(true_type(), key);
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename map<Key, T, Compare, Allocator>::value_compare
map<Key, T, Compare, Allocator>::value_comp() const
{
return value_compare(get_compare());
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename map<Key, T, Compare, Allocator>::size_type
map<Key, T, Compare, Allocator>::erase(const Key& key)
{
const iterator it(find(key));
if(it != end()) // If it exists...
{
base_type::erase(it);
return 1;
}
return 0;
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename map<Key, T, Compare, Allocator>::size_type
map<Key, T, Compare, Allocator>::count(const Key& key) const
{
const const_iterator it(find(key));
return (it != end()) ? 1 : 0;
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline eastl::pair<typename map<Key, T, Compare, Allocator>::iterator,
typename map<Key, T, Compare, Allocator>::iterator>
map<Key, T, Compare, Allocator>::equalRange(const Key& key)
{
// The resulting range will either be empty or have one element,
// so instead of doing two tree searches (one for lowerBound and
// one for upperBound), we do just lowerBound and see if the
// result is a range of size zero or one.
const iterator itLower(lowerBound(key));
if((itLower == end()) || compare(key, itLower->first)) // If at the end or if (key is < itLower)...
return eastl::pair<iterator, iterator>(itLower, itLower);
iterator itUpper(itLower);
return eastl::pair<iterator, iterator>(itLower, ++itUpper);
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline eastl::pair<typename map<Key, T, Compare, Allocator>::const_iterator,
typename map<Key, T, Compare, Allocator>::const_iterator>
map<Key, T, Compare, Allocator>::equalRange(const Key& key) const
{
// See equalRange above for comments.
const const_iterator itLower(lowerBound(key));
if((itLower == end()) || compare(key, itLower->first)) // If at the end or if (key is < itLower)...
return eastl::pair<const_iterator, const_iterator>(itLower, itLower);
const_iterator itUpper(itLower);
return eastl::pair<const_iterator, const_iterator>(itLower, ++itUpper);
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline T& map<Key, T, Compare, Allocator>::operator[](const Key& key)
{
iterator itLower(lowerBound(key)); // itLower->first is >= key.
if((itLower == end()) || compare(key, (*itLower).first))
{
itLower = base_type::DoInsertKey(true_type(), itLower, key);
}
return (*itLower).second;
// Reference implementation of this function, which may not be as fast:
//iterator it(base_type::insert(eastl::pair<iterator, iterator>(key, T())).first);
//return it->second;
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline T& map<Key, T, Compare, Allocator>::operator[](Key&& key)
{
iterator itLower(lowerBound(key)); // itLower->first is >= key.
if((itLower == end()) || compare(key, (*itLower).first))
{
itLower = base_type::DoInsertKey(true_type(), itLower, eastl::move(key));
}
return (*itLower).second;
// Reference implementation of this function, which may not be as fast:
//iterator it(base_type::insert(eastl::pair<iterator, iterator>(key, T())).first);
//return it->second;
}
#if defined(EA_COMPILER_HAS_THREE_WAY_COMPARISON)
template <typename Key, typename T, typename Compare, typename Allocator>
inline synth_three_way_result<eastl::pair<const Key, T>> operator<=>(const map<Key, T, Compare, Allocator>& a,
const map<Key, T, Compare, Allocator>& b)
{
return eastl::lexicographicalCompare_three_way(a.begin(), a.end(), b.begin(), b.end(), synth_three_way{});
}
#endif
template <typename Key, typename T, typename Compare, typename Allocator>
inline T& map<Key, T, Compare, Allocator>::at(const Key& key)
{
// use the use const version of ::at to remove duplication
return const_cast<T&>(const_cast<map<Key, T, Compare, Allocator> const*>(this)->at(key));
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline const T& map<Key, T, Compare, Allocator>::at(const Key& key) const
{
const_iterator candidate = this->find(key);
if (candidate == end())
{
#if EASTL_EXCEPTIONS_ENABLED
throw std::out_of_range("map::at key does not exist");
#else
EASTL_FAIL_MSG("map::at key does not exist");
#endif
}
return candidate->second;
}
///////////////////////////////////////////////////////////////////////
// erase_if
//
// https://en.cppreference.com/w/cpp/container/map/erase_if
///////////////////////////////////////////////////////////////////////
template <class Key, class T, class Compare, class Allocator, class Predicate>
typename map<Key, T, Compare, Allocator>::size_type erase_if(map<Key, T, Compare, Allocator>& c, Predicate predicate)
{
auto oldSize = c.size();
for (auto i = c.begin(), last = c.end(); i != last;)
{
if (predicate(*i))
{
i = c.erase(i);
}
else
{
++i;
}
}
return oldSize - c.size();
}
template <class Key, class T, class Compare, class Allocator>
template <class... Args>
inline eastl::pair<typename map<Key, T, Compare, Allocator>::iterator, bool>
map<Key, T, Compare, Allocator>::try_emplace(const key_type& key, Args&&... args)
{
return try_emplace_forward(key, eastl::forward<Args>(args)...);
}
template <class Key, class T, class Compare, class Allocator>
template <class... Args>
inline eastl::pair<typename map<Key, T, Compare, Allocator>::iterator, bool>
map<Key, T, Compare, Allocator>::try_emplace(key_type&& key, Args&&... args)
{
return try_emplace_forward(eastl::move(key), eastl::forward<Args>(args)...);
}
template <class Key, class T, class Compare, class Allocator>
template <class KFwd, class... Args>
inline eastl::pair<typename map<Key, T, Compare, Allocator>::iterator, bool>
map<Key, T, Compare, Allocator>::try_emplace_forward(KFwd&& key, Args&&... args)
{
bool canInsert;
rbtree_node_base* const pPosition = base_type::DoGetKeyInsertionPositionUniqueKeys(canInsert, key);
if (!canInsert)
{
return pair<iterator, bool>(iterator(pPosition), false);
}
node_type* const pNodeNew =
base_type::DoCreateNode(piecewise_construct, eastl::forward_as_tuple(eastl::forward<KFwd>(key)),
eastl::forward_as_tuple(eastl::forward<Args>(args)...));
// the key might be moved above, so we can't re-use it,
// we need to get it back from the node's value.
const auto& k = extract_key{}(pNodeNew->mValue);
const iterator itResult(base_type::DoInsertValueImpl(pPosition, false, k, pNodeNew));
return pair<iterator, bool>(itResult, true);
}
template <class Key, class T, class Compare, class Allocator>
template <class... Args>
inline typename map<Key, T, Compare, Allocator>::iterator
map<Key, T, Compare, Allocator>::try_emplace(const_iterator hint, const key_type& key, Args&&... args)
{
return try_emplace_forward(hint, key, eastl::forward<Args>(args)...);
}
template <class Key, class T, class Compare, class Allocator>
template <class... Args>
inline typename map<Key, T, Compare, Allocator>::iterator
map<Key, T, Compare, Allocator>::try_emplace(const_iterator hint, key_type&& key, Args&&... args)
{
return try_emplace_forward(hint, eastl::move(key), eastl::forward<Args>(args)...);
}
template <class Key, class T, class Compare, class Allocator>
template <class KFwd, class... Args>
inline typename map<Key, T, Compare, Allocator>::iterator
map<Key, T, Compare, Allocator>::try_emplace_forward(const_iterator hint, KFwd&& key, Args&&... args)
{
bool bForceToLeft;
rbtree_node_base* const pPosition = base_type::DoGetKeyInsertionPositionUniqueKeysHint(hint, bForceToLeft, key);
if (!pPosition)
{
// the hint didn't help, we need to do a normal insert.
return try_emplace_forward(eastl::forward<KFwd>(key), eastl::forward<Args>(args)...).first;
}
node_type* const pNodeNew =
base_type::DoCreateNode(piecewise_construct, eastl::forward_as_tuple(eastl::forward<KFwd>(key)),
eastl::forward_as_tuple(eastl::forward<Args>(args)...));
// the key might be moved above, so we can't re-use it,
// we need to get it back from the node's value.
return base_type::DoInsertValueImpl(pPosition, bForceToLeft, extract_key{}(pNodeNew->mValue), pNodeNew);
}
///////////////////////////////////////////////////////////////////////
// multimap
///////////////////////////////////////////////////////////////////////
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(const allocator_type& allocator)
: base_type(allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(const Compare& compare, const allocator_type& allocator)
: base_type(compare, allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(const this_type& x)
: base_type(x)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(this_type&& x)
: base_type(eastl::move(x))
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(this_type&& x, const allocator_type& allocator)
: base_type(eastl::move(x), allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(std::initializer_list<value_type> ilist, const Compare& compare, const allocator_type& allocator)
: base_type(ilist.begin(), ilist.end(), compare, allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline multimap<Key, T, Compare, Allocator>::multimap(std::initializer_list<value_type> ilist, const allocator_type& allocator)
: base_type(ilist.begin(), ilist.end(), Compare(), allocator)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
template <typename Iterator>
inline multimap<Key, T, Compare, Allocator>::multimap(Iterator itBegin, Iterator itEnd)
: base_type(itBegin, itEnd, Compare(), EASTL_MULTIMAP_DEFAULT_ALLOCATOR)
{
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename multimap<Key, T, Compare, Allocator>::insert_return_type
multimap<Key, T, Compare, Allocator>::insert(const Key& key)
{
return base_type::DoInsertKey(false_type(), key);
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename multimap<Key, T, Compare, Allocator>::value_compare
multimap<Key, T, Compare, Allocator>::value_comp() const
{
return value_compare(get_compare());
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename multimap<Key, T, Compare, Allocator>::size_type
multimap<Key, T, Compare, Allocator>::erase(const Key& key)
{
const eastl::pair<iterator, iterator> range(equalRange(key));
const size_type n = (size_type)eastl::distance(range.first, range.second);
base_type::erase(range.first, range.second);
return n;
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline typename multimap<Key, T, Compare, Allocator>::size_type
multimap<Key, T, Compare, Allocator>::count(const Key& key) const
{
const eastl::pair<const_iterator, const_iterator> range(equalRange(key));
return (size_type)eastl::distance(range.first, range.second);
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline eastl::pair<typename multimap<Key, T, Compare, Allocator>::iterator,
typename multimap<Key, T, Compare, Allocator>::iterator>
multimap<Key, T, Compare, Allocator>::equalRange(const Key& key)
{
// There are multiple ways to implement equalRange. The implementation mentioned
// in the C++ standard and which is used by most (all?) commercial STL implementations
// is this:
// return eastl::pair<iterator, iterator>(lowerBound(key), upperBound(key));
//
// This does two tree searches -- one for the lower bound and one for the
// upper bound. This works well for the case whereby you have a large container
// and there are lots of duplicated values. We provide an alternative version
// of equalRange called equalRange_small for cases where the user is confident
// that the number of duplicated items is only a few.
return eastl::pair<iterator, iterator>(lowerBound(key), upperBound(key));
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline eastl::pair<typename multimap<Key, T, Compare, Allocator>::const_iterator,
typename multimap<Key, T, Compare, Allocator>::const_iterator>
multimap<Key, T, Compare, Allocator>::equalRange(const Key& key) const
{
// See comments above in the non-const version of equalRange.
return eastl::pair<const_iterator, const_iterator>(lowerBound(key), upperBound(key));
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline eastl::pair<typename multimap<Key, T, Compare, Allocator>::iterator,
typename multimap<Key, T, Compare, Allocator>::iterator>
multimap<Key, T, Compare, Allocator>::equalRange_small(const Key& key)
{
// We provide alternative version of equalRange here which works faster
// for the case where there are at most small number of potential duplicated keys.
const iterator itLower(lowerBound(key));
iterator itUpper(itLower);
while((itUpper != end()) && !compare(key, itUpper->first))
++itUpper;
return eastl::pair<iterator, iterator>(itLower, itUpper);
}
template <typename Key, typename T, typename Compare, typename Allocator>
inline eastl::pair<typename multimap<Key, T, Compare, Allocator>::const_iterator,
typename multimap<Key, T, Compare, Allocator>::const_iterator>
multimap<Key, T, Compare, Allocator>::equalRange_small(const Key& key) const
{
// We provide alternative version of equalRange here which works faster
// for the case where there are at most small number of potential duplicated keys.
const const_iterator itLower(lowerBound(key));
const_iterator itUpper(itLower);
while((itUpper != end()) && !compare(key, itUpper->first))
++itUpper;
return eastl::pair<const_iterator, const_iterator>(itLower, itUpper);
}
///////////////////////////////////////////////////////////////////////
// erase_if
//
// https://en.cppreference.com/w/cpp/container/multimap/erase_if
///////////////////////////////////////////////////////////////////////
template <class Key, class T, class Compare, class Allocator, class Predicate>
typename multimap<Key, T, Compare, Allocator>::size_type erase_if(multimap<Key, T, Compare, Allocator>& c, Predicate predicate)
{
auto oldSize = c.size();
// Erases all elements that satisfy the predicate pred from the container.
for (auto i = c.begin(), last = c.end(); i != last;)
{
if (predicate(*i))
{
i = c.erase(i);
}
else
{
++i;
}
}
return oldSize - c.size();
}
#if defined(EA_COMPILER_HAS_THREE_WAY_COMPARISON)
template <typename Key, typename T, typename Compare, typename Allocator>
inline synth_three_way_result<eastl::pair<const Key, T>> operator<=>(const multimap<Key, T, Compare, Allocator>& a,
const multimap<Key, T, Compare, Allocator>& b)
{
return eastl::lexicographicalCompare_three_way(a.begin(), a.end(), b.begin(), b.end(), synth_three_way{});
}
#endif
} // namespace eastl
#endif // Header include guard