rotated-vec 0.1.1

A dynamic array mostly compatible with `std::vec::Vec`, supporting O(√n) inserts and deletes
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
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
//! A dynamic array based on a 2-level rotated array.
//!
//! See <a href="https://github.com/senderista/rotated-array-set/blob/master/README.md">the `rotated-array-set` README</a> for a detailed discussion of the performance
//! benefits and drawbacks of an equivalent data structure.

#![doc(html_root_url = "https://docs.rs/rotated-vec/0.1.0/rotated_vec/")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/senderista/rotated-array-set/master/img/cells.png")]

use std::mem;
use std::cmp::{min, Ordering};
use std::fmt::Debug;
use std::hash::{Hash, Hasher};
use std::iter::{DoubleEndedIterator, ExactSizeIterator, FromIterator, FusedIterator};
use std::ops::{Index, IndexMut};

/// A dynamic array based on a 2-level rotated array.
///
/// This is roughly a drop-in replacement for `Vec`, except that there is no
/// deref to a slice, so underlying slice methods are unavailable. Many of
/// the most useful slice methods have been ported.
///
/// # Examples
///
/// ```
/// use rotated_vec::RotatedVec;
///
/// // Type inference lets us omit an explicit type signature (which
/// // would be `RotatedVec<i32>` in this example).
/// let mut vec = RotatedVec::new();
///
/// // Push some integers onto the vector.
/// vec.push(-1);
/// vec.push(6);
/// vec.push(1729);
/// vec.push(24);
///
/// // Pop an integer from the vector.
/// vec.pop();
///
/// // Insert an integer at a given index.
/// vec.insert(1, 0);
///
/// // Remove an integer at a given index.
/// vec.remove(1);
///
/// // Change an integer at a given index.
/// vec[1] = 0;
///
/// // Iterate over everything.
/// for int in &vec {
///     println!("{}", int);
/// }
/// ```
#[derive(Debug, Clone)]
pub struct RotatedVec<T> {
    data: Vec<T>,
    start_indexes: Vec<usize>,
}

/// An iterator over the items of a `RotatedVec`.
///
/// This `struct` is created by the [`iter`] method on [`RotatedVec`][`RotatedVec`].
/// See its documentation for more.
///
/// [`RotatedVec`]: struct.RotatedVec.html
/// [`iter`]: struct.RotatedVec.html#method.iter
#[derive(Debug, Copy, Clone)]
pub struct Iter<'a, T: 'a> {
    container: &'a RotatedVec<T>,
    next_index: usize,
    next_rev_index: usize,
}

impl<'a, T> Iter<'a, T>
where
    T: Copy + Default + Debug,
{
    #[inline(always)]
    fn assert_invariants(&self) -> bool {
        assert!(self.next_index <= self.container.len());
        assert!(self.next_rev_index <= self.container.len());
        if self.next_rev_index < self.next_index {
            assert!(self.next_index - self.next_rev_index == 1);
        }
        true
    }
}

/// An iterator over the items of a `RotatedVec`.
///
/// This `struct` is created by the [`iter_mut`] method on [`RotatedVec`][`RotatedVec`].
/// See its documentation for more.
///
/// [`RotatedVec`]: struct.RotatedVec.html
/// [`iter_mut`]: struct.RotatedVec.html#method.iter_mut
#[derive(Debug)]
pub struct IterMut<'a, T: 'a> {
    container: &'a mut RotatedVec<T>,
    next_index: usize,
    next_rev_index: usize,
}

impl<'a, T> IterMut<'a, T>
where
    T: Copy + Default + Debug,
{
    #[inline(always)]
    fn assert_invariants(&self) -> bool {
        assert!(self.next_index <= self.container.len());
        assert!(self.next_rev_index <= self.container.len());
        if self.next_rev_index < self.next_index {
            assert!(self.next_index - self.next_rev_index == 1);
        }
        true
    }
}

/// An owning iterator over the items of a `RotatedVec`.
///
/// This `struct` is created by the [`into_iter`] method on [`RotatedVec`][`RotatedVec`]
/// (provided by the `IntoIterator` trait). See its documentation for more.
///
/// [`RotatedVec`]: struct.RotatedVec.html
/// [`into_iter`]: struct.RotatedVec.html#method.into_iter
#[derive(Debug, Clone)]
pub struct IntoIter<T> {
    vec: Vec<T>,
    next_index: usize,
}

impl<T> RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    /// Makes a new `RotatedVec` without any heap allocations.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// #![allow(unused_mut)]
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<i32> = RotatedVec::new();
    /// ```
    pub fn new() -> Self {
        RotatedVec {
            data: Vec::new(),
            start_indexes: Vec::new(),
        }
    }

    /// Constructs a new, empty `RotatedVec<T>` with the specified capacity.
    ///
    /// The vector will be able to hold exactly `capacity` elements without
    /// reallocating. If `capacity` is 0, the vector will not allocate.
    ///
    /// It is important to note that although the returned vector has the
    /// *capacity* specified, the vector will have a zero *length*.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec = RotatedVec::with_capacity(10);
    ///
    /// // The vector contains no items, even though it has capacity for more
    /// assert_eq!(vec.len(), 0);
    ///
    /// // These are all done without reallocating...
    /// for i in 0..10 {
    ///     vec.push(i);
    /// }
    ///
    /// // ...but this may make the vector reallocate
    /// vec.push(11);
    /// ```
    pub fn with_capacity(capacity: usize) -> RotatedVec<T> {
        let start_indexes_capacity = if capacity > 0 {
            Self::get_subarray_idx_from_array_idx(capacity - 1) + 1
        } else {
            0
        };
        RotatedVec {
            data: Vec::with_capacity(capacity),
            start_indexes: Vec::with_capacity(start_indexes_capacity),
        }
    }


    /// Returns a reference to the value in the array, if any, at the given index.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// assert_eq!(vec.get(0), Some(&1));
    /// assert_eq!(vec.get(3), None);
    /// ```
    pub fn get(&self, index: usize) -> Option<&T> {
        if index >= self.data.len() {
            return None;
        }
        let real_idx = self.get_real_index(index);
        Some(&self.data[real_idx])
    }

    /// Returns a mutable reference to the value in the array, if any, at the given index.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// assert_eq!(vec.get_mut(0), Some(&mut 1));
    /// assert_eq!(vec.get_mut(3), None);
    /// ```
    pub fn get_mut(&mut self, index: usize) -> Option<&mut T> {
        if index >= self.data.len() {
            return None;
        }
        let real_idx = self.get_real_index(index);
        Some(&mut self.data[real_idx])
    }

    /// Swaps two elements in the vector.
    ///
    /// This is a constant-time operation.
    ///
    /// # Arguments
    ///
    /// * a - The index of the first element
    /// * b - The index of the second element
    ///
    /// # Panics
    ///
    /// Panics if `a` or `b` are out of bounds.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec!["a", "b", "c", "d"].into();
    /// vec.swap(1, 3);
    /// assert_eq!(vec, vec!["a", "d", "c", "b"].into());
    /// ```
    pub fn swap(&mut self, a: usize, b: usize) {
        self.data.swap(a, b);
    }

    /// Returns the number of elements the vector can hold without
    /// reallocating.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let vec: RotatedVec<i32> = RotatedVec::with_capacity(10);
    /// assert_eq!(vec.capacity(), 10);
    ///
    pub fn capacity(&self) -> usize {
        self.data.capacity()
    }

    /// Reserves the minimum capacity for exactly `additional` more elements to
    /// be inserted in the given `RotatedVec<T>`. After calling `reserve_exact`,
    /// capacity will be greater than or equal to `self.len() + additional`.
    /// Does nothing if the capacity is already sufficient.
    ///
    /// Note that the allocator may give the collection more space than it
    /// requests. Therefore, capacity can not be relied upon to be precisely
    /// minimal. Prefer `reserve` if future insertions are expected.
    ///
    /// # Panics
    ///
    /// Panics if the new capacity overflows `usize`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1].into();
    /// vec.reserve_exact(10);
    /// assert!(vec.capacity() >= 11);
    /// ```
    pub fn reserve_exact(&mut self, additional: usize) {
        self.data.reserve_exact(additional);
    }

    /// Reserves capacity for at least `additional` more elements to be inserted
    /// in the given `RotatedVec<T>`. The collection may reserve more space to avoid
    /// frequent reallocations. After calling `reserve`, capacity will be
    /// greater than or equal to `self.len() + additional`. Does nothing if
    /// capacity is already sufficient.
    ///
    /// # Panics
    ///
    /// Panics if the new capacity overflows `usize`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1].into();
    /// vec.reserve(10);
    /// assert!(vec.capacity() >= 11);
    /// ```
    pub fn reserve(&mut self, additional: usize) {
        self.data.reserve(additional);
    }

    /// Shrinks the capacity of the vector as much as possible.
    ///
    /// It will drop down as close as possible to the length but the allocator
    /// may still inform the vector that there is space for a few more elements.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec = RotatedVec::with_capacity(10);
    /// vec.extend([1, 2, 3].iter().cloned());
    /// assert_eq!(vec.capacity(), 10);
    /// vec.shrink_to_fit();
    /// assert!(vec.capacity() >= 3);
    /// ```
    pub fn shrink_to_fit(&mut self) {
        self.data.shrink_to_fit();
    }

    /// Shortens the vector, keeping the first `len` elements and dropping
    /// the rest.
    ///
    /// This is an `O(√n)` operation.
    ///
    /// If `len` is greater than the vector's current length, this has no
    /// effect.
    ///
    /// Note that this method has no effect on the allocated capacity
    /// of the vector.
    ///
    /// # Examples
    ///
    /// Truncating a five element vector to two elements:
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3, 4, 5].into();
    /// vec.truncate(2);
    /// assert_eq!(vec, vec![1, 2].into());
    /// ```
    ///
    /// No truncation occurs when `len` is greater than the vector's current
    /// length:
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// vec.truncate(8);
    /// assert_eq!(vec, vec![1, 2, 3].into());
    /// ```
    ///
    /// Truncating when `len == 0` is equivalent to calling the [`clear`]
    /// method.
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// vec.truncate(0);
    /// assert_eq!(vec, vec![].into());
    /// ```
    ///
    pub fn truncate(&mut self, len: usize) {
        if len >= self.len() {
            return
        }
        // conceptually, we drop all subarrays after the truncated length,
        // then un-rotate the new last subarray, then drop any remaining elements.
        self.unrotate_last_subarray();
         // drop subarrays after truncated length
        let last_subarray_idx = Self::get_subarray_idx_from_array_idx(self.len() - 1);
        self.start_indexes.truncate(last_subarray_idx + 1);
        // truncate data array
        self.data.truncate(len);
    }

    /// Gets an iterator that visits the values in the `RotatedVec` in order.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let vec: RotatedVec<usize> = vec![1, 2, 3].into();
    /// let mut iter = vec.iter();
    /// assert_eq!(iter.next(), Some(&1));
    /// assert_eq!(iter.next(), Some(&2));
    /// assert_eq!(iter.next(), Some(&3));
    /// assert_eq!(iter.next(), None);
    /// ```
    pub fn iter(&self) -> Iter<T> {
        Iter {
            container: self,
            next_index: 0,
            next_rev_index: if self.len() == 0 { 0 } else { self.len() - 1 },
        }
    }

    /// Gets a mutable iterator that visits the values in the `RotatedVec` in order.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<usize> = vec![1, 2, 3].into();
    /// let mut iter = vec.iter_mut();
    /// let mut current_elem = None;
    /// current_elem = iter.next();
    /// assert_eq!(current_elem, Some(&mut 1));
    /// *current_elem.unwrap() = 2;
    /// current_elem = iter.next();
    /// assert_eq!(current_elem, Some(&mut 2));
    /// *current_elem.unwrap() = 3;
    /// current_elem = iter.next();
    /// assert_eq!(current_elem, Some(&mut 3));
    /// *current_elem.unwrap() = 4;
    /// assert_eq!(iter.next(), None);
    /// assert_eq!(vec, vec![2, 3, 4].into());
    /// ```
    pub fn iter_mut(&mut self) -> IterMut<T> {
        let len = self.len();
        IterMut {
            container: self,
            next_index: 0,
            next_rev_index: len - 1,
        }
    }

    /// Returns the number of elements in the set.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec = RotatedVec::new();
    /// assert_eq!(vec.len(), 0);
    /// vec.push(1);
    /// assert_eq!(vec.len(), 1);
    /// ```
    pub fn len(&self) -> usize {
        self.data.len()
    }

    /// Returns `true` if the set contains no elements.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec = RotatedVec::new();
    /// assert!(vec.is_empty());
    /// vec.push(1);
    /// assert!(!vec.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool {
        self.data.is_empty()
    }

    /// Clears the vector, removing all values.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec = RotatedVec::new();
    /// vec.push(1);
    /// vec.clear();
    /// assert!(vec.is_empty());
    /// ```
    pub fn clear(&mut self) {
        self.data.clear();
        self.start_indexes.clear();
    }

    /// Returns `true` if the `RotatedVec` contains an element equal to the
    /// given value.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec = RotatedVec::new();
    ///
    /// vec.push(0);
    /// vec.push(1);
    ///
    /// assert_eq!(vec.contains(&1), true);
    /// assert_eq!(vec.contains(&10), false);
    /// ```
    pub fn contains(&self, x: &T) -> bool
        where T: PartialEq<T>
    {
        self.data.contains(x)
    }

    /// Appends an element to the back of a collection.
    ///
    /// This is a constant-time operation.
    ///
    /// # Panics
    ///
    /// Panics if the number of elements in the vector overflows a `usize`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2].into();
    /// vec.push(3);
    /// assert_eq!(vec, vec![1, 2, 3].into());
    /// ```
    pub fn push(&mut self, value: T) {
        self.insert(self.len(), value);
    }

    /// Removes the last element from a vector and returns it, or [`None`] if it
    /// is empty.
    ///
    /// This is a constant-time operation.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// assert_eq!(vec.pop(), Some(3));
    /// assert_eq!(vec, vec![1, 2].into());
    /// ```
    pub fn pop(&mut self) -> Option<T> {
        if self.is_empty() {
            None
        } else {
            Some(self.remove(self.len() - 1))
        }
    }

    /// Inserts an element at position `index` within the vector.
    ///
    /// This is an `O(√n)` operation.
    ///
    /// # Panics
    ///
    /// Panics if `index > len`.
    ///
    /// # Examples
    ///
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// vec.insert(1, 4);
    /// assert_eq!(vec, vec![1, 4, 2, 3].into());
    /// vec.insert(4, 5);
    /// assert_eq!(vec, vec![1, 4, 2, 3, 5].into());
    /// ```
    pub fn insert(&mut self, index: usize, element: T) {
        assert!(index <= self.len());
        let insert_idx = if index < self.len() {
            self.get_real_index(index)
        } else {
            self.len()
        };
        // find subarray containing this insertion point
        let subarray_idx = Self::get_subarray_idx_from_array_idx(insert_idx);
        // inserted element could be in a new subarray
        debug_assert!(subarray_idx <= self.start_indexes.len());
        // create a new subarray if necessary
        if subarray_idx == self.start_indexes.len() {
            self.start_indexes.push(0);
        }
        let subarray_offset = Self::get_array_idx_from_subarray_idx(subarray_idx);
        // if insertion point is in last subarray and last subarray isn't full, just insert the new element
        if subarray_idx == self.start_indexes.len() - 1 && !self.is_last_subarray_full() {
            // Since we always insert into a partially full subarray in order,
            // there is no need to update the pivot location.
            debug_assert!(self.start_indexes[subarray_idx] == 0);
            self.data.insert(insert_idx, element);
            debug_assert!(self.assert_invariants());
            return;
        }
        // From now on, we can assume that the subarray we're inserting into is always full.
        let next_subarray_offset = Self::get_array_idx_from_subarray_idx(subarray_idx + 1);
        let subarray = &mut self.data[subarray_offset..next_subarray_offset];
        let pivot_offset = self.start_indexes[subarray_idx];
        let insert_offset = insert_idx - subarray_offset;
        let end_offset = if pivot_offset == 0 {
            subarray.len() - 1
        } else {
            pivot_offset - 1
        };
        let mut prev_end_elem = subarray[end_offset];
        // this logic is best understood with a diagram of a rotated array, e.g.:
        //
        // ------------------------------------------------------------------------
        // | 12 | 13 | 14 | 15 | 16 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
        // ------------------------------------------------------------------------
        //
        if end_offset < pivot_offset && insert_offset >= pivot_offset {
            subarray.copy_within(pivot_offset..insert_offset, end_offset);
            subarray[insert_offset - 1] = element;
            self.start_indexes[subarray_idx] = end_offset;
        } else {
            subarray.copy_within(insert_offset..end_offset, insert_offset + 1);
            subarray[insert_offset] = element;
        }
        debug_assert!(self.assert_invariants());
        let max_subarray_idx = self.start_indexes.len() - 1;
        let next_subarray_idx = subarray_idx + 1;
        let last_subarray_full = self.is_last_subarray_full();
        // now loop over all remaining subarrays, setting the first (pivot) of each to the last of its predecessor
        for (i, pivot_offset_ref) in self.start_indexes[next_subarray_idx..].iter_mut().enumerate() {
            let cur_subarray_idx = next_subarray_idx + i;
            // if the last subarray isn't full, skip it
            if cur_subarray_idx == max_subarray_idx && !last_subarray_full {
                break;
            }
            let end_offset = if *pivot_offset_ref == 0 {
                cur_subarray_idx
            } else {
                *pivot_offset_ref - 1
            };
            let end_idx = end_offset + Self::get_array_idx_from_subarray_idx(cur_subarray_idx);
            let next_end_elem = self.data[end_idx];
            self.data[end_idx] = prev_end_elem;
            *pivot_offset_ref = end_offset;
            prev_end_elem = next_end_elem;
        }
        // if the last subarray was full, append current last element to a new subarray, otherwise insert last element in rotated order
        if last_subarray_full {
            self.data.push(prev_end_elem);
            self.start_indexes.push(0);
        } else {
            let max_subarray_offset = Self::get_array_idx_from_subarray_idx(max_subarray_idx);
            // since `prev_end_elem` is guaranteed to be <= the pivot value, we always insert it at the pivot location
            self.data.insert(max_subarray_offset, prev_end_elem);
        }
        // debug_assert!(self.data[self.get_real_index(index)] == element);
        debug_assert!(self.assert_invariants());
    }

    /// Removes and returns the element at position `index` within the vector.
    ///
    /// This is an `O(√n)` operation.
    ///
    /// # Panics
    ///
    /// Panics if `index` is out of bounds.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// assert_eq!(vec.remove(1), 2);
    /// assert_eq!(vec, vec![1, 3].into());
    /// ```
    pub fn remove(&mut self, index: usize) -> T {
        assert!(index < self.len());
        let old_len = self.len();
        let mut remove_idx = self.get_real_index(index);
        let element = self.data[remove_idx];
        let max_subarray_idx = self.start_indexes.len() - 1;
        let max_subarray_offset = Self::get_array_idx_from_subarray_idx(max_subarray_idx);
        // find subarray containing the element to remove
        let subarray_idx = Self::get_subarray_idx_from_array_idx(remove_idx);
        debug_assert!(subarray_idx <= max_subarray_idx);
        let subarray_offset = Self::get_array_idx_from_subarray_idx(subarray_idx);
        // if we're not removing an element in the last subarray, then we end up deleting its first element,
        // which is always at the first offset since it's in order
        let mut max_subarray_remove_idx = if subarray_idx == max_subarray_idx {
            remove_idx
        } else {
            max_subarray_offset
        };
        // if the last subarray was rotated, un-rotate it to maintain insert invariant
        if self.is_last_subarray_full() {
            let last_start_offset = self.start_indexes[max_subarray_idx];
            // rotate left by the start offset
            self.data[max_subarray_offset..].rotate_left(last_start_offset);
            self.start_indexes[max_subarray_idx] = 0;
            // the remove index might change after un-rotating the last subarray
            if subarray_idx == max_subarray_idx {
                remove_idx = self.get_real_index(index);
                max_subarray_remove_idx = remove_idx;
            }
        }
        // if insertion point is not in last subarray, perform a "hard exchange"
        if subarray_idx < max_subarray_idx {
            // From now on, we can assume that the subarray we're removing from is full.
            let next_subarray_offset = Self::get_array_idx_from_subarray_idx(subarray_idx + 1);
            let subarray = &mut self.data[subarray_offset..next_subarray_offset];
            let pivot_offset = self.start_indexes[subarray_idx];
            let remove_offset = remove_idx - subarray_offset;
            let end_offset = if pivot_offset == 0 {
                subarray.len() - 1
            } else {
                pivot_offset - 1
            };
            // this logic is best understood with a diagram of a rotated array, e.g.:
            //
            // ------------------------------------------------------------------------
            // | 12 | 13 | 14 | 15 | 16 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
            // ------------------------------------------------------------------------
            //
            let mut prev_end_offset = if end_offset < pivot_offset && remove_offset >= pivot_offset
            {
                subarray.copy_within(pivot_offset..remove_offset, pivot_offset + 1);
                let new_pivot_offset = if pivot_offset == subarray.len() - 1 {
                    0
                } else {
                    pivot_offset + 1
                };
                self.start_indexes[subarray_idx] = new_pivot_offset;
                pivot_offset
            } else {
                subarray.copy_within(remove_offset + 1..=end_offset, remove_offset);
                end_offset
            };
            let next_subarray_idx = min(max_subarray_idx, subarray_idx + 1);
            // now perform an "easy exchange" in all remaining subarrays except the last,
            // setting the last element of each to the first element of its successor.
            for (i, pivot_offset_ref) in self.start_indexes[next_subarray_idx..max_subarray_idx]
                .iter_mut()
                .enumerate()
            {
                let cur_subarray_idx = next_subarray_idx + i;
                let cur_subarray_offset = Self::get_array_idx_from_subarray_idx(cur_subarray_idx);
                let prev_end_idx =
                    prev_end_offset + Self::get_array_idx_from_subarray_idx(cur_subarray_idx - 1);
                self.data[prev_end_idx] = self.data[cur_subarray_offset + *pivot_offset_ref];
                prev_end_offset = *pivot_offset_ref;
                let new_start_offset = if *pivot_offset_ref == cur_subarray_idx {
                    0
                } else {
                    *pivot_offset_ref + 1
                };
                *pivot_offset_ref = new_start_offset;
            }
            // now we fix up the last subarray. if it was initially full, we need to un-rotate it to maintain the insert invariant.
            // if the removed element is in the last subarray, we just un-rotate and remove() on the vec, updating auxiliary arrays.
            // otherwise, we copy the first element to the last position of the previous subarray, then remove it and fix up
            // auxiliary arrays.
            let prev_end_idx =
                prev_end_offset + Self::get_array_idx_from_subarray_idx(max_subarray_idx - 1);
            // since the last subarray is always in order, its first element is always on the first offset
            self.data[prev_end_idx] = self.data[max_subarray_offset];
        }
        self.data.remove(max_subarray_remove_idx);
        // if last subarray is now empty, trim start_indexes
        if max_subarray_offset == self.data.len() {
            self.start_indexes.pop();
        }
        debug_assert!(self.len() == old_len - 1);
        debug_assert!(self.assert_invariants());
        element
    }

    /// Moves all the elements of `other` into `self`, leaving `other` empty.
    ///
    /// # Panics
    ///
    /// Panics if the number of elements in the array overflows a `usize`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![1, 2, 3].into();
    /// let mut vec2: RotatedVec<_> = vec![4, 5, 6].into();
    /// vec.append(&mut vec2);
    /// assert_eq!(vec, vec![1, 2, 3, 4, 5, 6].into());
    /// assert_eq!(vec2, vec![].into());
    /// ```
    pub fn append(&mut self, other: &mut Self) {
        // if the last subarray is partially full, un-rotate it so we can append directly
        if !self.is_last_subarray_full() {
            self.unrotate_last_subarray();
        }
        // append data directly to backing array
        self.data.append(&mut other.data);
        // fix up start indexes
        let last_subarray_idx = Self::get_subarray_idx_from_array_idx(self.data.len() - 1);
        self.start_indexes.resize(last_subarray_idx + 1, 0);
        // clear all data in `other`
        other.clear();
    }

    /// Sorts the vector.
    ///
    /// This sort is stable (i.e., does not reorder equal elements) and `O(n log n)` worst-case.
    ///
    /// When applicable, unstable sorting is preferred because it is generally faster than stable
    /// sorting and it doesn't allocate auxiliary memory.
    /// See [`sort_unstable`](#method.sort_unstable).
    ///
    /// # Current implementation
    ///
    /// The current algorithm is an adaptive, iterative merge sort inspired by
    /// [timsort](https://en.wikipedia.org/wiki/Timsort).
    /// It is designed to be very fast in cases where the vector is nearly sorted, or consists of
    /// two or more sorted sequences concatenated one after another.
    ///
    /// Also, it allocates temporary storage half the size of `self`, but for short vectors a
    /// non-allocating insertion sort is used instead.
    ///
    /// # Examples
    ///
    /// ```
    /// use is_sorted::IsSorted;
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![-5, 4, 1, -3, 2].into();
    ///
    /// vec.sort();
    /// assert!(IsSorted::is_sorted(&mut vec.iter()));
    /// ```
    pub fn sort(&mut self)
        where T: Ord
    {
        self.data.sort();
        // TODO: we really want slice.fill() here when it becomes available
        for idx in self.start_indexes.as_mut_slice() {
            *idx = 0;
        }
    }

    /// Sorts the vector, but may not preserve the order of equal elements.
    ///
    /// This sort is unstable (i.e., may reorder equal elements), in-place
    /// (i.e., does not allocate), and `O(n log n)` worst-case.
    ///
    /// # Current implementation
    ///
    /// The current algorithm is based on [pattern-defeating quicksort][pdqsort] by Orson Peters,
    /// which combines the fast average case of randomized quicksort with the fast worst case of
    /// heapsort, while achieving linear time on vectors with certain patterns. It uses some
    /// randomization to avoid degenerate cases, but with a fixed seed to always provide
    /// deterministic behavior.
    ///
    /// It is typically faster than stable sorting, except in a few special cases, e.g., when the
    /// vector consists of several concatenated sorted sequences.
    ///
    /// # Examples
    ///
    /// ```
    /// use is_sorted::IsSorted;
    /// use rotated_vec::RotatedVec;
    ///
    /// let mut vec: RotatedVec<_> = vec![-5, 4, 1, -3, 2].into();
    ///
    /// vec.sort_unstable();
    /// assert!(IsSorted::is_sorted(&mut vec.iter()));
    /// ```
    ///
    /// [pdqsort]: https://github.com/orlp/pdqsort
    pub fn sort_unstable(&mut self)
        where T: Ord
    {
        self.data.sort_unstable();
        // TODO: we really want slice.fill() here when it becomes available
        for idx in self.start_indexes.as_mut_slice() {
            *idx = 0;
        }
    }

    // this returns the index in the backing array of the given logical index
    fn get_real_index(&self, index: usize) -> usize {
        debug_assert!(index < self.data.len());
        let subarray_idx = Self::get_subarray_idx_from_array_idx(index);
        let subarray_start_idx = Self::get_array_idx_from_subarray_idx(subarray_idx);
        let subarray_len = if subarray_idx == self.start_indexes.len() - 1 {
            self.data.len() - subarray_start_idx
        } else {
            subarray_idx + 1
        };
        debug_assert!(index >= subarray_start_idx);
        let idx_offset = index - subarray_start_idx;
        let pivot_offset = self.start_indexes[subarray_idx];
        let rotated_offset = (pivot_offset + idx_offset) % subarray_len;
        debug_assert!(rotated_offset < subarray_len);
        let real_idx = subarray_start_idx + rotated_offset;
        real_idx
    }

    fn integer_sum(n: usize)    -> usize {
        // I learned this from a 10-year-old named Gauss
        (n * (n + 1)) / 2
    }

    fn integer_sum_inverse(n: usize) -> usize {
        // y = (x * (x + 1)) / 2
        // x = (sqrt(8 * y + 1) - 1) / 2
        ((f64::from((n * 8 + 1) as u32).sqrt() as usize) - 1) / 2
    }

    fn get_subarray_idx_from_array_idx(idx: usize) -> usize {
        if idx == 0 {
            0
        } else {
            Self::integer_sum_inverse(idx)
        }
    }

    fn get_array_idx_from_subarray_idx(idx: usize) -> usize {
        if idx == 0 {
            0
        } else {
            Self::integer_sum(idx)
        }
    }

    fn is_last_subarray_full(&self) -> bool {
        self.data.len() == Self::get_array_idx_from_subarray_idx(self.start_indexes.len())
    }

    fn unrotate_last_subarray(&mut self) {
        let last_subarray_idx = Self::get_subarray_idx_from_array_idx(self.len() - 1);
        let last_subarray_start_idx = Self::get_array_idx_from_subarray_idx(last_subarray_idx);
        let last_subarray_len = if last_subarray_idx == self.start_indexes.len() - 1 {
            self.len() - last_subarray_start_idx
        } else {
            last_subarray_idx + 1
        };
        let last_subarray_end_idx = last_subarray_start_idx + last_subarray_len;
        let last_subarray = &mut self.data[last_subarray_start_idx..last_subarray_end_idx];
        // un-rotate subarray in-place
        let pivot_offset = self.start_indexes[last_subarray_idx];
        last_subarray.rotate_left(pivot_offset);
        self.start_indexes[last_subarray_idx] = 0;
    }

    #[inline(always)]
    fn assert_invariants(&self) -> bool {
        // assert offset array has proper length
        let expected_start_indexes_len = if self.is_empty() {
            0
        } else {
            Self::get_subarray_idx_from_array_idx(self.len() - 1) + 1
        };
        assert_eq!(self.start_indexes.len(), expected_start_indexes_len);
        // assert index of each subarray's first element lies within the subarray
        assert!(self
            .start_indexes
            .iter()
            .enumerate()
            .all(|(idx, &offset)| offset <= idx));
        true
    }

    // given data array, initialize offset array
    fn init(&mut self) {
        debug_assert!(self.start_indexes.is_empty());
        if !self.data.is_empty() {
            let last_subarray_idx = Self::get_subarray_idx_from_array_idx(self.data.len() - 1);
            self.start_indexes = vec![0; last_subarray_idx + 1];
        }
    }
}

impl<T> PartialEq for RotatedVec<T>
where
    T: Copy + Default + Debug + PartialEq,
{
    fn eq(&self, other: &Self) -> bool {
        if self.len() != other.len() {
            return false;
        }
        for i in 0..self.len() {
            if self.get(i).unwrap() != other.get(i).unwrap() {
                return false;
            }
        }
        true
    }
}

impl<T> Eq for RotatedVec<T>
where
    T: Copy + Default + Debug + PartialEq
{}

impl<T> PartialOrd for RotatedVec<T>
where
    T: Copy + Default + Debug + PartialOrd
{
    fn partial_cmp(&self, other: &RotatedVec<T>) -> Option<Ordering> {
        self.iter().partial_cmp(other.iter())
    }
}

impl<T> Ord for RotatedVec<T>
where
    T: Copy + Default + Debug + Ord
{
    fn cmp(&self, other: &RotatedVec<T>) -> Ordering {
        self.iter().cmp(other.iter())
    }
}

impl<T> Hash for RotatedVec<T>
where
    T: Copy + Default + Debug + PartialEq + Hash
{
    fn hash<H: Hasher>(&self, state: &mut H) {
        for i in 0..self.len() {
            self.get(i).hash(state);
        }
    }
}

impl<T> Index<usize> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    type Output = T;

    #[inline]
    fn index(&self, index: usize) -> &T {
        self.get(index).expect("Out of bounds access")
    }
}

impl<T> IndexMut<usize> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    #[inline]
    fn index_mut(&mut self, index: usize) -> &mut T {
        self.get_mut(index).expect("Out of bounds access")
    }
}

impl<T> Extend<T> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    fn extend<I>(&mut self, iter: I)
    where
        I: IntoIterator<Item = T>,
    {
        // if the last subarray is partially full, un-rotate it so we can append directly
        if !self.is_last_subarray_full() {
            self.unrotate_last_subarray();
        }
        // append data directly to backing array
        self.data.extend(iter);
        // fix up start indexes
        let last_subarray_idx = Self::get_subarray_idx_from_array_idx(self.data.len() - 1);
        self.start_indexes.resize(last_subarray_idx + 1, 0);
    }
}

impl<'a, T> Iterator for Iter<'a, T>
where
    T: Copy + Default + Debug,
{
    type Item = &'a T;

    fn next(&mut self) -> Option<Self::Item> {
        if self.len() == 0 || self.next_index > self.next_rev_index {
            None
        } else {
            let current = self.container.get(self.next_index);
            self.next_index += 1;
            debug_assert!(self.assert_invariants());
            current
        }
    }

    fn nth(&mut self, n: usize) -> Option<Self::Item> {
        self.next_index = min(self.next_index + n, self.len());
        let ret = if self.len() == 0 || self.next_index > self.next_rev_index {
            None
        } else {
            let nth = self.container.get(self.next_index);
            self.next_index += 1;
            nth
        };
        debug_assert!(self.assert_invariants());
        ret
    }

    fn count(self) -> usize {
        self.len() - self.next_index
    }

    fn last(self) -> Option<Self::Item> {
        if self.len() == 0 {
            None
        } else {
            self.container.get(self.len() - 1)
        }
    }

    fn max(self) -> Option<Self::Item> {
        if self.len() == 0 {
            None
        } else {
            self.container.get(self.len() - 1)
        }
    }

    fn min(self) -> Option<Self::Item> {
        self.container.get(0)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        let remaining_count = self.len() - self.next_index;
        (remaining_count, Some(remaining_count))
    }
}

impl<'a, T> DoubleEndedIterator for Iter<'a, T>
where
    T: Copy + Default + Debug,
{
    fn next_back(&mut self) -> Option<Self::Item> {
        if self.len() == 0 || self.next_rev_index < self.next_index {
            None
        } else {
            let current = self.container.get(self.next_rev_index);
            // We can't decrement next_rev_index past 0, so we cheat and move next_index
            // ahead instead. That works since next() must return None once next_rev_index
            // has crossed next_index.
            if self.next_rev_index == 0 {
                self.next_index += 1;
            } else {
                self.next_rev_index -= 1;
            }
            debug_assert!(self.assert_invariants());
            current
        }
    }

    fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
        self.next_rev_index = self.next_rev_index.saturating_sub(n);
        let ret = if self.len() == 0 || self.next_rev_index < self.next_index {
            None
        } else {
            let nth = self.container.get(self.next_rev_index);
            // We can't decrement next_rev_index past 0, so we cheat and move next_index
            // ahead instead. That works since next() must return None once next_rev_index
            // has crossed next_index.
            if self.next_rev_index == 0 {
                self.next_index += 1;
            } else {
                self.next_rev_index -= 1;
            }
            nth
        };
        debug_assert!(self.assert_invariants());
        ret
    }
}

impl<T> ExactSizeIterator for Iter<'_, T>
where
    T: Copy + Default + Debug,
{
    fn len(&self) -> usize {
        self.container.len()
    }
}

impl<T> FusedIterator for Iter<'_, T> where T: Copy + Default + Debug {}

impl<'a, T> Iterator for IterMut<'a, T>
where
    T: Copy + Default + Debug,
{
    type Item = &'a mut T;

    // unsafe code required, see:
    // https://www.reddit.com/r/rust/comments/6ffrbs/implementing_a_safe_mutable_iterator/
    // https://stackoverflow.com/questions/25730586/how-can-i-create-my-own-data-structure-with-an-iterator-that-returns-mutable-ref
    // https://stackoverflow.com/questions/27118398/simple-as-possible-example-of-returning-a-mutable-reference-from-your-own-iterat
    fn next(&mut self) -> Option<Self::Item> {
        let ret = if self.len() == 0 || self.next_index > self.next_rev_index {
            None
        } else {
            let current = self.container.get_mut(self.next_index);
            self.next_index += 1;
            // see MutItems example at https://docs.rs/strided/0.2.9/src/strided/base.rs.html
            // per above links, rustc cannot understand that we never return two mutable references to the same object,
            // so we have to use unsafe code to coerce the return value to the desired lifetime
            unsafe { mem::transmute(current) }
        };
        debug_assert!(self.assert_invariants());
        ret
    }

    fn nth(&mut self, n: usize) -> Option<Self::Item> {
        self.next_index = min(self.next_index + n, self.len());
        let ret = if self.len() == 0 || self.next_index > self.next_rev_index {
            None
        } else {
            let nth = self.container.get_mut(self.next_index);
            self.next_index += 1;
            // per above links, rustc cannot understand that we never return two mutable references to the same object,
            // so we have to use unsafe code to coerce the return value to the desired lifetime
            unsafe { mem::transmute(nth) }
        };
        debug_assert!(self.assert_invariants());
        ret
    }

    fn count(self) -> usize {
        self.len() - self.next_index
    }

    fn last(self) -> Option<Self::Item> {
        if self.len() == 0 {
            None
        } else {
            self.container.get_mut(self.len() - 1)
        }
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        let remaining_count = self.len() - self.next_index;
        (remaining_count, Some(remaining_count))
    }
}

impl<'a, T> DoubleEndedIterator for IterMut<'a, T>
where
    T: Copy + Default + Debug,
{
    fn next_back(&mut self) -> Option<Self::Item> {
        if self.len() == 0 || self.next_rev_index < self.next_index {
            None
        } else {
            let current = self.container.get(self.next_rev_index);
            // We can't decrement next_rev_index past 0, so we cheat and move next_index
            // ahead instead. That works since next() must return None once next_rev_index
            // has crossed next_index.
            if self.next_rev_index == 0 {
                self.next_index += 1;
            } else {
                self.next_rev_index -= 1;
            }
            debug_assert!(self.assert_invariants());
            // per above links, rustc cannot understand that we never return two mutable references to the same object,
            // so we have to use unsafe code to coerce the return value to the desired lifetime
            unsafe { mem::transmute(current) }
        }
    }

    fn nth_back(&mut self, n: usize) -> Option<Self::Item> {
        self.next_rev_index = self.next_rev_index.saturating_sub(n);
        let ret = if self.len() == 0 || self.next_rev_index < self.next_index {
            None
        } else {
            let nth = self.container.get(self.next_rev_index);
            // We can't decrement next_rev_index past 0, so we cheat and move next_index
            // ahead instead. That works since next() must return None once next_rev_index
            // has crossed next_index.
            if self.next_rev_index == 0 {
                self.next_index += 1;
            } else {
                self.next_rev_index -= 1;
            }
            // per above links, rustc cannot understand that we never return two mutable references to the same object,
            // so we have to use unsafe code to coerce the return value to the desired lifetime
            unsafe { mem::transmute(nth) }
        };
        debug_assert!(self.assert_invariants());
        ret
    }
}

impl<T> ExactSizeIterator for IterMut<'_, T>
where
    T: Copy + Default + Debug,
{
    fn len(&self) -> usize {
        self.container.len()
    }
}

impl<T> FusedIterator for IterMut<'_, T> where T: Copy + Default + Debug {}

impl<'a, T> IntoIterator for &'a RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    type Item = &'a T;
    type IntoIter = Iter<'a, T>;

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

impl<'a, T> IntoIterator for &'a mut RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    type Item = &'a mut T;
    type IntoIter = IterMut<'a, T>;

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

impl<T> IntoIterator for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    type Item = T;
    type IntoIter = IntoIter<T>;

    fn into_iter(self) -> Self::IntoIter {
        IntoIter {
            vec: self.into(),
            next_index: 0,
        }
    }
}

impl<'a, T> Iterator for IntoIter<T>
where
    T: Copy + Default + Debug,
{
    type Item = T;

    fn next(&mut self) -> Option<Self::Item> {
        if self.next_index == self.vec.len() {
            None
        } else {
            let current = self.vec[self.next_index];
            self.next_index += 1;
            debug_assert!(self.next_index <= self.vec.len());
            Some(current)
        }
    }
}

impl<'a, T> From<&'a [T]> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    fn from(slice: &'a [T]) -> Self {
        let mut this = RotatedVec {
            data: slice.to_vec(),
            start_indexes: Vec::new(),
        };
        this.init();
        this
    }
}

impl<T> From<Vec<T>> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    fn from(vec: Vec<T>) -> Self {
        let mut this = RotatedVec {
            data: vec,
            start_indexes: Vec::new(),
        };
        this.init();
        this
    }
}

impl<T> Into<Vec<T>> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    fn into(mut self) -> Vec<T> {
        // un-rotate the data array in-place and steal it from self
        for (i, &pivot_offset) in self.start_indexes.iter().enumerate() {
            let subarray_start_idx = Self::get_array_idx_from_subarray_idx(i);
            let subarray_len = if i == self.start_indexes.len() - 1 {
                self.data.len() - subarray_start_idx
            } else {
                i + 1
            };
            let subarray_end_idx = subarray_start_idx + subarray_len;
            let subarray = &mut self.data[subarray_start_idx..subarray_end_idx];
            // un-rotate subarray in-place
            subarray.rotate_left(pivot_offset);
        }
        // steal data array
        self.data
    }
}

impl<T> FromIterator<T> for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
        let mut this = RotatedVec {
            data: Vec::from_iter(iter.into_iter()),
            start_indexes: Vec::new(),
        };
        this.init();
        this
    }
}

impl<T> Default for RotatedVec<T>
where
    T: Copy + Default + Debug,
{
    #[inline]
    fn default() -> RotatedVec<T> {
        RotatedVec::new()
    }
}