dequemap 0.3.0

A no_std compatible implementation of the dequemap crate
Documentation
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
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
/*
DequeHashMap is a combination of a double-ended queue and a hash map. It allows for the
insertion, deletion, and lookup of elements in O(1) time complexity, and maintains the
order in which elements are inserted. It is commonly used in scenarios such as caching or
message queues, where elements need to be quickly looked up and removed. In addition,
DequeHashMap provides an Entry API similar to that of a regular hash map, which allows for
advanced features such as concurrent modifications on the hash map.

As I mentioned earlier, DequeHashMap is a generic data structure that combines the strengths
of a double-ended queue and a hash map. It allows for fast insertion, deletion, and
lookup of elements, while maintaining the order in which they were inserted. This makes
it suitable for scenarios such as caching or message queues, where it can help improve
system performance and efficiency. In addition, DequeHashMap can support advanced features
such as concurrent modifications by implementing the Entry API.

In short, DequeHashMap is a powerful data structure that can meet a wide range of needs. It
has a wide range of applications and can help solve many practical problems.

DequeHashMap is a useful data structure for many different applications. Some of its key
features and advantages include:
 - Fast insertion, deletion, and lookup of elements: DequeHashMap allows for the insertion,
deletion, and lookup of elements in O(1) time complexity, making it efficient for a wide
range of applications.
 - Maintaining insertion order: DequeHashMap maintains the order in which elements are
inserted, allowing you to easily keep track of the order of elements. This can be useful
in scenarios such as message queues, where the order in which messages are processed is
important.
 - Support for the Entry API: DequeHashMap provides an Entry API similar to that of a regular
hash map, which allows for advanced features such as concurrent modifications. This can
make DequeHashMap a powerful tool for applications that require concurrent access to data.
 - Flexible keys and values: DequeHashMap allows you to use any type that implements the Hash
and Eq traits as a key, and any type as a value. This means that you can store a wide
range of data types in a DequeHashMap, making it a versatile data structure.
Overall, DequeHashMap is a useful data structure that can help improve the performance and
efficiency of your applications. Its combination of fast insertion, deletion, and lookup,
along with its support for maintaining insertion order and the Entry API, make it a
powerful tool for many different scenarios.

In addition to the features and advantages mentioned earlier, DequeHashMap also has some
potential limitations and drawbacks that you should be aware of. These include:
 - Not suitable for processing large batches of data with many duplicates: Because the
maximum time complexity of DequeHashMap is O(n), it is not suitable for processing large
batches of data with many duplicate elements. In these scenarios, a different data
structure may be more appropriate.
 - Limited to key-value pairs: DequeHashMap only allows you to store key-value pairs, so it
may not be suitable for applications that require other data structures. For example, if
you need to store a list of items without associated keys, a different data structure
such as a vector or linked list may be more appropriate.
 - Potential for memory overhead: DequeHashMap uses a hash map internally to store its
elements, which can lead to some memory overhead. This may not be an issue for small or
moderate-sized collections, but it could become a problem if you are working with very
large collections of data.
While DequeHashMap is a powerful data structure with many useful features, it is important to
be aware of its limitations and potential drawbacks. In some cases, a different data
structure may be a better choice for your application.

One possible use case for DequeHashMap is implementing a simple message queue. The code below
shows an example of how you might use DequeHashMap for this purpose:

```
use std::collections::DequeHashMap;

// Create a new DequeHashMap with a capacity of 100 messages.
let mut queue = DequeHashMap::with_capacity(100);

// Enqueue some messages.
queue.push_back("message1", "Hello, world!");
queue.push_back("message2", "This is a message queue.");
queue.push_back("message3", "DequeHashMap is a powerful data structure.");

// Dequeue a message.
let message = queue.pop_front();

// Update a message in the queue.
queue.push_back("message2", "This is an updated message.");

// Remove a message from the queue.
queue.remove("message3");

```

This code creates a new DequeHashMap with a capacity of 100 messages, enqueues some messages,
dequeues a message, updates a message, and removes a message. As with the caching
example, you would likely want to add additional logic for handling errors and
implementing more advanced features in a real application.

Another possible use case for DequeHashMap is implementing a simple dictionary data
structure. The code below shows an example of how you might use DequeHashMap for this purpose:

```
use std::collections::DequeHashMap;

// Create a new DequeHashMap.
let mut dictionary = DequeHashMap::new();

// Insert some words and definitions.
dictionary.insert("word1", "A unit of language.");
dictionary.insert("word2", "A word or phrase used to describe something.");
dictionary.insert("word3", "A word or phrase that has a specific meaning.");

// Look up a word in the dictionary.
let definition = dictionary.get("word2");

// Update a word in the dictionary.
dictionary.insert("word1", "A unit of language that consists of one or more spoken sounds.");

// Remove a word from the dictionary.
dictionary.remove("word3");


```

This code creates a new DequeHashMap, inserts some words and definitions, looks up a word,
updates a word, and removes a word. As with the other examples, you would likely want to
add additional logic for handling errors and implementing more advanced features in a
real application.

The above content and some comments in the code are written by ChatGPT.
 */
use alloc::collections::vec_deque::IntoIter as DequeIntoIter;
use alloc::collections::vec_deque::Iter as DequeIter;

use alloc::collections::BTreeSet;
use alloc::collections::VecDeque;
use core::borrow::Borrow;
use core::fmt;
use core::hash::BuildHasher;
use core::hash::Hash;
use core::iter::DoubleEndedIterator;
use core::iter::ExactSizeIterator;
use core::iter::FromIterator;
use core::iter::FusedIterator;
use core::mem::replace;
use core::ops::{Index, IndexMut};

use hashbrown::hash_map;
use hashbrown::DefaultHashBuilder;
use hashbrown::HashMap;

///Double-ended queue with Map feature.
///
/// When the element is present, the maximum time complexity is O(n). So it is not suitable for
/// processing large batches of data with too many duplicates.

#[derive(Debug, Clone)]
pub struct DequeHashMap<K, V, S = DefaultHashBuilder> {
    entries: HashMap<K, V, S>,
    indices: VecDeque<K>,
}

impl<K, V> DequeHashMap<K, V> {
    pub fn new() -> Self {
        Self {
            entries: HashMap::new(),
            indices: VecDeque::new(),
        }
    }

    pub fn with_capacity(capacity: usize) -> Self {
        Self {
            entries: HashMap::with_capacity(capacity),
            indices: VecDeque::with_capacity(capacity),
        }
    }
}

impl<K, V, S> Default for DequeHashMap<K, V, S>
where
    S: Default,
{
    fn default() -> Self {
        Self {
            entries: HashMap::default(),
            indices: VecDeque::default(),
        }
    }
}

impl<K, V, S> DequeHashMap<K, V, S> {
    #[inline]
    pub fn with_hasher(hasher: S) -> Self {
        Self {
            entries: HashMap::with_hasher(hasher),
            indices: VecDeque::default(),
        }
    }
}

impl<K, V, S> DequeHashMap<K, V, S>
where
    K: Hash + Eq + Clone,
    S: BuildHasher,
{
    /// Inserts a key-value pair into the map.
    ///
    /// If the map did not have this key present, `None` is returned.
    ///
    #[inline]
    pub fn insert(&mut self, key: K, value: V) -> Option<V> {
        if let Some(v) = self.entries.get_mut(&key) {
            Some(replace(v, value))
        } else {
            self.entries.insert(key.clone(), value);
            self.indices.push_back(key);
            None
        }
    }

    #[inline]
    pub fn push_back(&mut self, key: K, value: V) -> Option<V> {
        let old_val = self.remove_entry(&key);
        self.entries.insert(key.clone(), value);
        self.indices.push_back(key);
        old_val
    }

    #[inline]
    pub fn push_front(&mut self, key: K, value: V) -> Option<V> {
        let old_val = self.remove_entry(&key);
        self.entries.insert(key.clone(), value);
        self.indices.push_front(key);
        old_val
    }

    #[inline]
    pub fn entry(&mut self, key: K) -> Entry<'_, K, V, S> {
        match self.entries.entry(key) {
            hash_map::Entry::Vacant(entry) => Entry::Vacant(VacantEntry {
                vacant: entry,
                indices: &mut self.indices,
            }),
            hash_map::Entry::Occupied(entry) => Entry::Occupied(OccupiedEntry { occupied: entry }),
        }
    }

    #[inline]
    fn remove_entry(&mut self, key: &K) -> Option<V> {
        if let Some(old_val) = self.entries.remove(key) {
            self.remove_from_index(key);
            Some(old_val)
        } else {
            None
        }
    }
}

impl<K, V, S> DequeHashMap<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    /// Reserves capacity for at least additional more elements to be inserted in the given VecDeque.
    /// The collection may reserve more space to avoid frequent reallocations.
    pub fn reserve(&mut self, additional: usize) {
        self.indices.reserve(additional);
    }

    #[inline]
    pub fn clear(&mut self) {
        self.indices.clear();
        self.entries.clear();
    }

    #[inline]
    pub fn remove(&mut self, k: &K) -> Option<V>
    where
        K: Clone,
    {
        if let Some(old_val) = self.entries.remove(k) {
            self.remove_from_index(k);
            Some(old_val)
        } else {
            None
        }
    }

    #[inline]
    pub fn get<Q>(&self, k: &Q) -> Option<&V>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.entries.get(k)
    }

    #[inline]
    pub fn get_key_value<Q>(&self, key: &Q) -> Option<(&K, &V)>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.entries.get_key_value(key)
    }

    #[inline]
    pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.entries.get_mut(k)
    }

    #[inline]
    pub fn iter(&self) -> Iter<'_, K, V, S> {
        Iter {
            inner: self.indices.iter(),
            entries: &self.entries,
        }
    }

    #[inline]
    pub fn len(&self) -> usize {
        self.indices.len()
    }

    #[inline]
    pub fn is_empty(&self) -> bool {
        self.indices.is_empty()
    }

    #[inline]
    pub fn contains_key<Q>(&self, k: &Q) -> bool
    where
        K: Borrow<Q>,
        Q: Hash + Eq + ?Sized,
    {
        self.entries.contains_key(k)
    }

    #[inline]
    pub fn front(&self) -> Option<(&K, &V)> {
        if self.is_empty() {
            return None;
        }
        if let Some(k) = self.indices.front() {
            self.entries.get(k).map(|v| (k, v))
        } else {
            None
        }
    }

    #[inline]
    pub fn pop_front(&mut self) -> Option<(K, V)> {
        if let Some(k) = self.indices.pop_front() {
            self.entries.remove(&k).map(|v| (k, v))
        } else {
            None
        }
    }

    #[inline]
    pub fn back(&self) -> Option<(&K, &V)> {
        if self.is_empty() {
            return None;
        }
        if let Some(k) = self.indices.back() {
            self.entries.get(k).map(|v| (k, v))
        } else {
            None
        }
    }

    #[inline]
    pub fn pop_back(&mut self) -> Option<(K, V)> {
        if let Some(k) = self.indices.pop_back() {
            self.entries.remove(&k).map(|v| (k, v))
        } else {
            None
        }
    }

    #[inline]
    pub fn retain<F>(&mut self, mut f: F)
    where
        K: Ord + Clone,
        F: FnMut(&K, &mut V) -> bool,
    {
        let mut removeds = BTreeSet::new();
        self.entries.retain(|k, v| {
            if f(k, v) {
                true
            } else {
                removeds.insert(k.clone());
                false
            }
        });
        self.indices.retain(|k| !removeds.contains(k))
    }

    #[inline]
    fn get_index(&self, k: &K) -> Option<usize> {
        self.indices
            .iter()
            .enumerate()
            .find(|(_, x)| *x == k)
            .map(|(idx, _)| idx)
    }

    #[inline]
    fn remove_from_index(&mut self, k: &K) -> Option<K> {
        if let Some(idx) = self.get_index(k) {
            self.indices.remove(idx)
        } else {
            None
        }
    }
}

impl<'a, K, Q, V, S> Index<&'a Q> for DequeHashMap<K, V, S>
where
    K: Borrow<Q> + Hash + Eq,
    Q: Hash + Eq,
    S: BuildHasher,
{
    type Output = V;

    fn index(&self, key: &'a Q) -> &Self::Output {
        self.get(key).expect("no entry found for key")
    }
}

impl<K, V, S> Index<usize> for DequeHashMap<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    type Output = V;

    fn index(&self, index: usize) -> &Self::Output {
        let key = self
            .indices
            .get(index)
            .expect("DequeHashMap: index out of bounds");
        self.entries
            .get(key)
            .expect("DequeHashMap: index out of bounds")
    }
}

impl<K, V, S> IndexMut<usize> for DequeHashMap<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    fn index_mut(&mut self, index: usize) -> &mut Self::Output {
        let key = self
            .indices
            .get(index)
            .expect("DequeHashMap: index out of bounds");
        self.entries
            .get_mut(key)
            .expect("DequeHashMap: index out of bounds")
    }
}

impl<K, V, S> IntoIterator for DequeHashMap<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    type Item = (K, V);
    type IntoIter = IntoIter<K, V, S>;

    fn into_iter(self) -> Self::IntoIter {
        IntoIter {
            inner: self.indices.into_iter(),
            entries: self.entries,
        }
    }
}

impl<'a, K, V, S> Extend<(&'a K, &'a V)> for DequeHashMap<K, V, S>
where
    K: Hash + Eq + Copy,
    V: Copy,
    S: BuildHasher,
{
    fn extend<T>(&mut self, iter: T)
    where
        T: IntoIterator<Item = (&'a K, &'a V)>,
    {
        for (key, value) in iter {
            self.insert(*key, *value);
        }
    }
}

impl<K, V, S> Extend<(K, V)> for DequeHashMap<K, V, S>
where
    K: Hash + Eq + Clone,
    S: BuildHasher,
{
    fn extend<I: IntoIterator<Item = (K, V)>>(&mut self, iter: I) {
        for (k, v) in iter {
            self.insert(k, v);
        }
    }
}

impl<K, V, S> FromIterator<(K, V)> for DequeHashMap<K, V, S>
where
    K: Hash + Eq + Clone,
    S: Default + BuildHasher,
{
    fn from_iter<T>(iter: T) -> Self
    where
        T: IntoIterator<Item = (K, V)>,
    {
        let mut map = DequeHashMap::default();
        map.extend(iter);
        map
    }
}

impl<K, V, S, const N: usize> From<[(K, V); N]> for DequeHashMap<K, V, S>
where
    K: Hash + Eq + Clone,
    S: Default + BuildHasher,
{
    fn from(items: [(K, V); N]) -> Self {
        let mut map = DequeHashMap::default();
        map.extend(items);
        map
    }
}

impl<'a, K, V, S> IntoIterator for &'a DequeHashMap<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    type Item = (&'a K, &'a V);
    type IntoIter = Iter<'a, K, V, S>;

    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

#[derive(Debug, Clone)]
pub struct Iter<'a, K, V, S> {
    inner: DequeIter<'a, K>,
    entries: &'a HashMap<K, V, S>,
}

impl<'a, K, V, S> Iterator for Iter<'a, K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    type Item = (&'a K, &'a V);

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        if let Some(k) = self.inner.next() {
            self.entries.get(k).map(|v| (k, v))
        } else {
            None
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.inner.size_hint()
    }

    #[inline]
    fn count(self) -> usize {
        self.inner.count()
    }
}

impl<K, V, S> DoubleEndedIterator for Iter<'_, K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(k) = self.inner.next_back() {
            self.entries.get(k).map(|v| (k, v))
        } else {
            None
        }
    }
}

impl<K, V, S> ExactSizeIterator for Iter<'_, K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    fn len(&self) -> usize {
        self.inner.len()
    }
}

impl<K, V, S> FusedIterator for Iter<'_, K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
}

pub struct IntoIter<K, V, S> {
    inner: DequeIntoIter<K>,
    entries: HashMap<K, V, S>,
}

impl<K, V, S> Iterator for IntoIter<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    type Item = (K, V);

    #[inline]
    fn next(&mut self) -> Option<Self::Item> {
        if let Some(k) = self.inner.next() {
            self.entries.remove(&k).map(|v| (k, v))
        } else {
            None
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.inner.size_hint()
    }

    #[inline]
    fn count(self) -> usize {
        self.inner.count()
    }
}

impl<K, V, S> DoubleEndedIterator for IntoIter<K, V, S>
where
    K: Hash + Eq,
    S: BuildHasher,
{
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(k) = self.inner.next_back() {
            self.entries.remove(&k).map(|v| (k, v))
        } else {
            None
        }
    }
}

impl<K: Hash, V, S> ExactSizeIterator for IntoIter<K, V, S>
where
    K: Eq,
    S: BuildHasher,
{
    fn len(&self) -> usize {
        self.inner.len()
    }
}

impl<K: Hash, V, S> FusedIterator for IntoIter<K, V, S>
where
    K: Eq,
    S: BuildHasher,
{
}

/// A view into a single entry in a map, which may either be vacant or occupied.
///
/// This `enum` is constructed from the [`entry`] method on [`DequeHashMap`].
///
/// [`entry`]: DequeHashMap::entry
pub enum Entry<'a, K, V, S> {
    /// A vacant entry.
    Vacant(VacantEntry<'a, K, V, S>),
    /// An occupied entry.
    Occupied(OccupiedEntry<'a, K, V, S>),
}

impl<'a, K: Hash, V, S> Entry<'a, K, V, S> {
    /// Ensures a value is in the entry by inserting the default if empty,
    /// and returns a mutable reference to the value in the entry.
    pub fn or_insert(self, default: V) -> &'a mut V
    where
        K: Clone,
        S: BuildHasher,
    {
        match self {
            Self::Occupied(entry) => entry.into_mut(),
            Self::Vacant(entry) => entry.insert(default),
        }
    }

    /// Ensures a value is in the entry by inserting the result
    /// of the default function if empty,
    /// and returns a mutable reference to the value in the entry.
    pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V
    where
        K: Clone,
        S: BuildHasher,
    {
        match self {
            Self::Occupied(entry) => entry.into_mut(),
            Self::Vacant(entry) => entry.insert(default()),
        }
    }

    /// Ensures a value is in the entry by inserting,
    /// if empty, the result of the default function.
    ///
    /// This method allows for generating key-derived values for
    /// insertion by providing the default function a reference
    /// to the key that was moved during the `.entry(key)` method call.
    ///
    /// The reference to the moved key is provided
    /// so that cloning or copying the key is
    /// unnecessary, unlike with `.or_insert_with(|| ... )`.
    pub fn or_insert_with_key<F: FnOnce(&K) -> V>(self, default: F) -> &'a mut V
    where
        K: Clone,
        S: BuildHasher,
    {
        match self {
            Self::Occupied(entry) => entry.into_mut(),
            Self::Vacant(entry) => {
                let value = default(entry.key());
                entry.insert(value)
            }
        }
    }

    /// Returns a reference to this entry’s key.
    pub fn key(&self) -> &K {
        match *self {
            Self::Occupied(ref entry) => entry.key(),
            Self::Vacant(ref entry) => entry.key(),
        }
    }

    /// Provides in-place mutable access to an occupied entry
    /// before any potential inserts into the map.
    pub fn and_modify<F>(self, f: F) -> Self
    where
        F: FnOnce(&mut V),
    {
        match self {
            Self::Occupied(mut entry) => {
                f(entry.get_mut());
                Self::Occupied(entry)
            }
            Self::Vacant(entry) => Self::Vacant(entry),
        }
    }
}

impl<'a, K, V, S> Entry<'a, K, V, S>
where
    K: Hash + Clone,
    V: Default,
    S: BuildHasher,
{
    /// Ensures a value is in the entry by inserting the default value if empty,
    /// and returns a mutable reference to the value in the entry.
    pub fn or_default(self) -> &'a mut V {
        match self {
            Self::Occupied(entry) => entry.into_mut(),
            Self::Vacant(entry) => entry.insert(Default::default()),
        }
    }
}

impl<K, V, S> fmt::Debug for Entry<'_, K, V, S>
where
    K: fmt::Debug + Hash,
    V: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Entry::Vacant(entry) => entry.fmt(f),
            Entry::Occupied(entry) => entry.fmt(f),
        }
    }
}

/// A view into a vacant entry in an [`DequeHashMap`]. It is part of the [`Entry`] `enum`.
pub struct VacantEntry<'a, K, V, S> {
    /// The underlying vacant entry.
    vacant: hash_map::VacantEntry<'a, K, V, S>,
    /// The vector that stores all slots.
    indices: &'a mut VecDeque<K>,
}

impl<'a, K, V, S> VacantEntry<'a, K, V, S>
where
    K: Hash,
{
    /// Gets a reference to the key that would be used when inserting a value through the VacantEntry.
    pub fn key(&self) -> &K {
        self.vacant.key()
    }

    /// Take ownership of the key.
    pub fn into_key(self) -> K {
        self.vacant.into_key()
    }

    /// Sets the value of the entry with the `VacantEntry`’s key,
    /// and returns a mutable reference to it.
    pub fn insert(self, value: V) -> &'a mut V
    where
        K: Clone,
        S: BuildHasher,
    {
        self.indices.push_back(self.vacant.key().clone());
        self.vacant.insert(value)
    }
}

impl<K, V, S> fmt::Debug for VacantEntry<'_, K, V, S>
where
    K: fmt::Debug + Hash,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("VacantEntry")
            .field("key", self.key())
            .finish()
    }
}

/// A view into an occupied entry in a [`DequeHashMap`]. It is part of the [`Entry`] `enum`.
pub struct OccupiedEntry<'a, K, V, S> {
    /// The underlying occupied entry.
    occupied: hash_map::OccupiedEntry<'a, K, V, S>,
}

impl<'a, K, V, S> OccupiedEntry<'a, K, V, S>
where
    K: Hash,
{
    /// Gets a reference to the key in the entry.
    pub fn key(&self) -> &K {
        self.occupied.key()
    }

    /// Gets a reference to the value in the entry.
    pub fn get(&self) -> &V {
        self.occupied.get()
    }

    /// Gets a mutable reference to the value in the entry.
    ///
    /// If you need a reference to the `OccupiedEntry` that may outlive the
    /// destruction of the `Entry` value, see [`into_mut`].
    ///
    /// [`into_mut`]: OccupiedEntry::into_mut
    pub fn get_mut(&mut self) -> &mut V {
        self.occupied.get_mut()
    }

    /// Converts the entry into a mutable reference to its value.
    ///
    /// If you need multiple references to the `OccupiedEntry`, see [`get_mut`].
    ///
    /// [`get_mut`]: OccupiedEntry::get_mut
    pub fn into_mut(self) -> &'a mut V {
        self.occupied.into_mut()
    }

    /// Sets the value of the entry with the `OccupiedEntry`’s key,
    /// and returns the entry’s old value.
    pub fn insert(&mut self, value: V) -> V
    where
        K: Clone,
    {
        replace(self.occupied.get_mut(), value)
    }
}

impl<K, V, S> fmt::Debug for OccupiedEntry<'_, K, V, S>
where
    K: fmt::Debug + Hash,
    V: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("OccupiedEntry")
            .field("key", self.key())
            .field("value", self.get())
            .finish()
    }
}

#[cfg(feature = "serde")]
impl<K, V> serde::ser::Serialize for DequeHashMap<K, V>
where
    K: serde::ser::Serialize + Hash + Eq,
    V: serde::ser::Serialize,
{
    fn serialize<T>(&self, serializer: T) -> Result<T::Ok, T::Error>
    where
        T: serde::ser::Serializer,
    {
        serializer.collect_map(self)
    }
}

#[cfg(feature = "serde")]
struct DequeHashMapVisitor<K, V>(core::marker::PhantomData<(K, V)>);

#[cfg(feature = "serde")]
impl<'de, K, V> serde::de::Visitor<'de> for DequeHashMapVisitor<K, V>
where
    K: serde::de::Deserialize<'de> + Hash + Eq + Clone,
    V: serde::de::Deserialize<'de>,
{
    type Value = DequeHashMap<K, V>;

    fn expecting(&self, formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(formatter, "a map")
    }

    fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
    where
        A: serde::de::MapAccess<'de>,
    {
        let mut values = DequeHashMap::with_capacity(map.size_hint().unwrap_or(0));
        while let Some((key, value)) = map.next_entry()? {
            values.insert(key, value);
        }
        Ok(values)
    }
}

/// Requires crate feature `"serde"`
#[cfg(feature = "serde")]
impl<'de, K, V> serde::de::Deserialize<'de> for DequeHashMap<K, V>
where
    K: serde::de::Deserialize<'de> + Hash + Eq + Clone,
    V: serde::de::Deserialize<'de>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::de::Deserializer<'de>,
    {
        deserializer.deserialize_map(DequeHashMapVisitor(core::marker::PhantomData))
    }
}

#[cfg(feature = "serde")]
impl<'de, K, V, E> serde::de::IntoDeserializer<'de, E> for DequeHashMap<K, V>
where
    K: serde::de::IntoDeserializer<'de, E> + Hash + Eq,
    V: serde::de::IntoDeserializer<'de, E>,
    E: serde::de::Error,
{
    type Deserializer = serde::de::value::MapDeserializer<'de, <Self as IntoIterator>::IntoIter, E>;

    fn into_deserializer(self) -> Self::Deserializer {
        serde::de::value::MapDeserializer::new(self.into_iter())
    }
}

#[cfg(feature = "serde")]
#[test]
fn test_dequehashmap_serde() {
    use alloc::vec::Vec;
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.push_back(2, 20);
    map.push_back(1, 10);
    map.push_back(9, 90);
    map.push_back(3, 30);
    map.push_back(5, 50);
    assert_eq!(to_vec(&map), [(2, 20), (1, 10), (9, 90), (3, 30), (5, 50)]);

    let data = postcard::to_stdvec(&map).unwrap();
    let map: DequeHashMap<i32, i32> = postcard::from_bytes(&data).unwrap();
    assert_eq!(to_vec(&map), [(2, 20), (1, 10), (9, 90), (3, 30), (5, 50)]);
}

#[test]
fn test_insert() {
    use alloc::vec::Vec;
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.insert(2, 20);
    map.insert(1, 10);
    map.insert(9, 90);
    assert_eq!(to_vec(&map), [(2, 20), (1, 10), (9, 90)]);

    map.insert(7, 70);
    map.insert(1, 100);
    assert_eq!(to_vec(&map), [(2, 20), (1, 100), (9, 90), (7, 70)]);

    assert_eq!(map.entries.len(), map.indices.len());

    assert_eq!(map.pop_front(), Some((2, 20)));
    assert_eq!(map.pop_back(), Some((7, 70)));
    assert_eq!(to_vec(&map), [(1, 100), (9, 90)]);

    map.insert(3, 30);
    map.insert(7, 70);
    map.insert(9, 900);
    map.push_back(1, 10);
    assert_eq!(to_vec(&map), [(9, 900), (3, 30), (7, 70), (1, 10)]);
    assert_eq!(map.entries.len(), map.indices.len());
}

#[test]
fn test_entry() {
    use alloc::vec::Vec;
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.entry(2).or_insert(20);
    map.entry(1).or_insert(10);
    map.entry(9).or_insert(90);
    map.entry(3).or_insert(30);
    map.entry(5).or_insert(50);
    assert_eq!(map.get(&1), Some(&10));
    assert_eq!(map.get(&2), Some(&20));
    assert_eq!(map.get(&3), Some(&30));
    assert_eq!(map.get(&5), Some(&50));
    assert_eq!(map.get(&9), Some(&90));

    assert_eq!(to_vec(&map), [(2, 20), (1, 10), (9, 90), (3, 30), (5, 50)]);
    assert_eq!(map.entries.len(), map.indices.len());

    map.entry(3).and_modify(|v| *v = 300);

    assert_eq!(to_vec(&map), [(2, 20), (1, 10), (9, 90), (3, 300), (5, 50)]);
    assert_eq!(map.entries.len(), map.indices.len());

    map.entry(7).or_insert_with(|| 70);
    assert_eq!(
        to_vec(&map),
        [(2, 20), (1, 10), (9, 90), (3, 300), (5, 50), (7, 70)]
    );
    assert_eq!(map.entries.len(), map.indices.len());
}

#[test]
fn test_dequemap() {
    use alloc::vec::Vec;
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.push_back(2, 20);
    map.push_back(1, 10);
    map.push_back(9, 90);
    map.push_back(3, 30);
    map.push_back(5, 50);
    assert_eq!(map.get(&1), Some(&10));
    assert_eq!(map.get(&2), Some(&20));
    assert_eq!(map.get(&3), Some(&30));
    assert_eq!(map.get(&5), Some(&50));
    assert_eq!(map.get(&9), Some(&90));
    assert_eq!(map.len(), 5);
    assert_eq!(map.pop_front(), Some((2, 20)));
    assert_eq!(map.len(), 4);
    assert_eq!(map.pop_back(), Some((5, 50)));
    assert_eq!(map.len(), 3);
    assert_eq!(to_vec(&map), [(1, 10), (9, 90), (3, 30)]);
    assert_eq!(map.entries.len(), map.indices.len());

    let mut map1: DequeHashMap<i32, i32> = DequeHashMap::new();
    map1.push_back(7, 70);
    map1.push_back(9, 900);
    map.extend(map1);
    assert_eq!(to_vec(&map), [(1, 10), (9, 900), (3, 30), (7, 70)]);
    assert_eq!(map.entries.len(), map.indices.len());

    assert_eq!(map.front(), Some((&1, &10)));
    assert_eq!(map.back(), Some((&7, &70)));

    assert_eq!(to_vec(&map), [(1, 10), (9, 900), (3, 30), (7, 70)]);
    assert_eq!(map.entries.len(), map.indices.len());

    map.remove(&3);
    assert_eq!(to_vec(&map), [(1, 10), (9, 900), (7, 70)]);
    assert_eq!(map.entries.len(), map.indices.len());
}

#[test]
fn test_dequemap_index() {
    let mut map = DequeHashMap::new();
    map.push_back(2, 20);
    map.push_back(1, 10);
    map.push_back(9, 90);
    assert_eq!(map.index_mut(1), &mut 10);
    assert_eq!(map.index(2), &90);
}

#[test]
fn test_dequemap_extend() {
    use alloc::vec::Vec;
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<Vec<(i32, i32)>>()
    };
    let mut map = DequeHashMap::new();
    map.push_back(2, 20);
    map.push_back(1, 10);
    map.push_back(9, 90);
    map.extend([(10, 100), (5, 50)]);
    assert_eq!(
        to_vec(&map),
        [(2, 20), (1, 10), (9, 90), (10, 100), (5, 50)]
    );
    assert_eq!(map.entries.len(), map.indices.len());
}

#[test]
fn test_dequemap_retain() {
    let mut map = DequeHashMap::new();
    map.push_back(2, 20);
    map.push_back(1, 10);
    map.push_back(9, 90);
    map.extend([(10, 100), (5, 50)]);

    assert_eq!(map.entries.len(), map.indices.len());
    assert_eq!(map.entries.len(), 5);

    map.retain(|k, _| *k != 10 && *k != 2);

    assert_eq!(map.entries.len(), map.indices.len());
    assert_eq!(map.entries.len(), 3);
}

#[test]
fn test_empty_dequehashmap() {
    let mut map: DequeHashMap<i32, i32> = DequeHashMap::new();
    assert_eq!(map.len(), 0);
    assert!(map.is_empty());
    assert_eq!(map.front(), None);
    assert_eq!(map.back(), None);
    assert_eq!(map.pop_front(), None);
    assert_eq!(map.pop_back(), None);
    assert_eq!(map.get(&1), None);
    assert_eq!(map.contains_key(&1), false);
}

#[test]
fn test_dequehashmap_large_entries() {
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<alloc::vec::Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    for i in 0..1000 {
        map.push_back(i, i * 10);
    }
    assert_eq!(map.len(), 1000);
    assert!(!map.is_empty());

    for i in 0..1000 {
        assert_eq!(map.get(&i), Some(&(i * 10)));
    }

    let expected: Vec<(i32, i32)> = (0..1000).map(|i| (i, i * 10)).collect();
    assert_eq!(to_vec(&map), expected);

    // pop_front all
    for i in 0..1000 {
        assert_eq!(map.pop_front(), Some((i, i * 10)));
    }
    assert!(map.is_empty());
    assert_eq!(map.len(), 0);
}

#[test]
fn test_dequehashmap_push_front_back_interleave() {
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<alloc::vec::Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.push_back(3, 30);
    map.push_front(1, 10);
    map.push_back(5, 50);
    map.push_front(0, 0);
    map.push_back(7, 70);
    assert_eq!(to_vec(&map), [(0, 0), (1, 10), (3, 30), (5, 50), (7, 70)]);

    assert_eq!(map.pop_front(), Some((0, 0)));
    assert_eq!(map.pop_back(), Some((7, 70)));
    assert_eq!(to_vec(&map), [(1, 10), (3, 30), (5, 50)]);
}

#[test]
fn test_dequehashmap_remove_middle() {
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<alloc::vec::Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.push_back(1, 10);
    map.push_back(2, 20);
    map.push_back(3, 30);
    map.push_back(4, 40);
    map.push_back(5, 50);

    map.remove(&3);
    assert_eq!(to_vec(&map), [(1, 10), (2, 20), (4, 40), (5, 50)]);
    assert_eq!(map.len(), 4);

    // Check remaining indices via Index
    assert_eq!(map[0], 10);
    assert_eq!(map[1], 20);
    assert_eq!(map[2], 40);
    assert_eq!(map[3], 50);
}

#[test]
fn test_dequehashmap_insert_existing() {
    let to_vec = |map: &DequeHashMap<i32, i32>| {
        map.iter()
            .map(|t| (*t.0, *t.1))
            .collect::<alloc::vec::Vec<(i32, i32)>>()
    };

    let mut map = DequeHashMap::new();
    map.push_back(1, 10);
    map.push_back(2, 20);
    map.push_back(3, 30);

    // Insert existing key - updates value without moving index
    assert_eq!(map.insert(2, 200), Some(20));
    assert_eq!(to_vec(&map), [(1, 10), (2, 200), (3, 30)]);

    // push_back existing - moves to back
    assert_eq!(map.push_back(1, 100), Some(10));
    assert_eq!(to_vec(&map), [(2, 200), (3, 30), (1, 100)]);

    // push_front existing - moves to front
    assert_eq!(map.push_front(3, 300), Some(30));
    assert_eq!(to_vec(&map), [(3, 300), (2, 200), (1, 100)]);

    assert_eq!(map.entries.len(), map.indices.len());
}

#[test]
fn test_dequehashmap_clear() {
    let mut map = DequeHashMap::new();
    map.push_back(1, 10);
    map.push_back(2, 20);
    map.push_back(3, 30);
    assert_eq!(map.len(), 3);
    assert!(!map.is_empty());

    map.clear();
    assert_eq!(map.len(), 0);
    assert!(map.is_empty());
    assert_eq!(map.front(), None);
    assert_eq!(map.back(), None);
    assert_eq!(map.get(&1), None);
    assert_eq!(map.contains_key(&1), false);
}

#[test]
fn test_dequehashmap_entry_or_default() {
    let mut map: DequeHashMap<i32, Vec<i32>> = DequeHashMap::new();
    // or_default on a Vacant entry inserts Default::default()
    map.entry(1).or_default().push(10);
    map.entry(2).or_default().push(20);
    assert_eq!(map.get(&1), Some(&vec![10]));
    assert_eq!(map.get(&2), Some(&vec![20]));
    assert_eq!(map.len(), 2);

    // or_default on an Occupied entry returns existing value
    map.entry(1).or_default().push(100);
    assert_eq!(map.get(&1), Some(&vec![10, 100]));
    assert_eq!(map.len(), 2);
    assert_eq!(map.entries.len(), map.indices.len());
}

#[cfg(feature = "serde")]
#[test]
fn test_dequehashmap_serde_empty() {
    let map: DequeHashMap<i32, i32> = DequeHashMap::new();
    assert!(map.is_empty());

    let data = postcard::to_stdvec(&map).unwrap();
    let map: DequeHashMap<i32, i32> = postcard::from_bytes(&data).unwrap();
    assert!(map.is_empty());
    assert_eq!(map.len(), 0);
}