non-empty-vec 0.2.4

`NonEmpty` vector implementation, ensure non-emptiness by construction.
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
//! Non-empty vector, with non-emptiness ensured by construction.

#![cfg_attr(not(any(feature = "std", doc, test)), no_std)]

extern crate alloc;

use alloc::boxed::Box;
use alloc::collections::TryReserveError;
use alloc::vec;
use alloc::vec::{Drain, IntoIter, Vec};
use core::borrow::{Borrow, BorrowMut};
use core::convert::TryFrom;
use core::fmt::{Debug, Display, Formatter};
use core::iter::{Extend, FusedIterator};
use core::num::NonZeroUsize;
use core::ops::{Bound, Deref, DerefMut, Index, IndexMut, RangeBounds};
use core::slice::{Iter, IterMut, SliceIndex};

#[cfg(feature = "std")]
use std::io::{IoSlice, Write};

#[cfg(feature = "serde")]
use serde::{de::Error, Deserialize, Deserializer, Serialize, Serializer};

/// Calls [`std::hint::unreachable_unchecked`] in release mode, and panics in debug mode.
macro_rules! unreachable_unchecked {
    () => {{
        #[cfg(debug_assertions)]
        ::core::unreachable!();
        #[allow(unreachable_code)]
        ::core::hint::unreachable_unchecked()
    }};
}

/// Error from trying to convert from an empty [`Vec`].
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq, Hash)]
pub struct EmptyError;

impl Display for EmptyError {
    fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
        write!(f, "vector must be non-empty")
    }
}

#[cfg(feature = "std")]
impl std::error::Error for EmptyError {}

/// Non-empty vector, with non-emptiness ensured by construction.
///
/// Inherits slices' methods through the [`Deref`] and [`DerefMut`] traits.
///
/// [`Vec`]'s methods are manually overriden. Some important differences:
/// * [`len`](Self::len) returns [`NonZeroUsize`] and [`is_empty`](Self::is_empty) always returns `false`.
/// * [`first(_mut)`](Self::first), [`last(_mut)`](Self::last), [`split_first(_mut)`](Self::split_first), [`split_last(_mut)`](Self::split_last) don't return [`Option`].
/// * [`pop`](Self::pop) and [`remove`](Self::remove) return `None` if there is only one element.
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct NonEmpty<T>(Vec<T>);

impl<T> NonEmpty<T> {
    /// Constructs a non-empty vector with a single element.
    #[inline]
    pub fn new(v: T) -> Self {
        Self(vec![v])
    }

    /// Constructs a non-empty vector with a single element and a specific capacity.
    #[inline]
    pub fn with_capacity(v: T, capacity: usize) -> Self {
        let mut vec = Vec::with_capacity(capacity);
        vec.push(v);
        Self(vec)
    }

    /// Constructs a non-empty vector without checking its size.
    ///
    /// # Safety
    ///
    /// The vector should not be empty.
    #[inline]
    pub const unsafe fn new_unchecked(vec: Vec<T>) -> Self {
        Self(vec)
    }

    #[inline]
    pub fn as_slice(&self) -> &[T] {
        &self.0
    }

    #[inline]
    pub fn as_mut_slice(&mut self) -> &mut [T] {
        &mut self.0
    }

    #[inline]
    pub fn as_ptr(&self) -> *const T {
        self.0.as_ptr()
    }

    #[inline]
    pub fn as_mut_ptr(&mut self) -> *mut T {
        self.0.as_mut_ptr()
    }

    #[inline]
    pub fn leak<'a>(self) -> &'a mut [T] {
        self.0.leak()
    }

    #[inline]
    pub fn into_boxed_slice(self) -> Box<[T]> {
        self.0.into_boxed_slice()
    }

    #[inline]
    pub fn len(&self) -> NonZeroUsize {
        unsafe { NonZeroUsize::new_unchecked(self.0.len()) }
    }

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

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

    #[inline]
    pub fn reserve(&mut self, additional: usize) {
        self.0.reserve(additional)
    }

    #[inline]
    pub fn reserve_exact(&mut self, additional: usize) {
        self.0.reserve_exact(additional)
    }

    #[inline]
    pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError> {
        self.0.try_reserve(additional)
    }

    #[inline]
    pub fn try_reserve_exact(&mut self, additional: usize) -> Result<(), TryReserveError> {
        self.0.try_reserve_exact(additional)
    }

    #[inline]
    pub fn shrink_to_fit(&mut self) {
        self.0.shrink_to_fit()
    }

    #[inline]
    pub fn shrink_to(&mut self, min_capacity: usize) {
        self.0.shrink_to(min_capacity)
    }

    #[inline]
    pub fn first(&self) -> &T {
        unsafe { self.0.get_unchecked(0) }
    }

    #[inline]
    pub fn first_mut(&mut self) -> &mut T {
        unsafe { self.0.get_unchecked_mut(0) }
    }

    #[inline]
    pub fn last(&self) -> &T {
        let i = self.len().get() - 1;
        unsafe { self.0.get_unchecked(i) }
    }

    #[inline]
    pub fn last_mut(&mut self) -> &mut T {
        let i = self.len().get() - 1;
        unsafe { self.0.get_unchecked_mut(i) }
    }

    #[inline]
    pub fn split_first(&self) -> (&T, &[T]) {
        (&self[0], &self[1..])
    }

    #[inline]
    pub fn split_first_mut(&mut self) -> (&mut T, &mut [T]) {
        let split = self.0.split_at_mut(1);
        (&mut split.0[0], split.1)
    }

    #[inline]
    pub fn split_last(&self) -> (&T, &[T]) {
        let len = self.len().get();
        (&self[len - 1], &self[..(len - 1)])
    }

    #[inline]
    pub fn split_last_mut(&mut self) -> (&mut T, &mut [T]) {
        let i = self.len().get() - 1;
        let split = self.0.split_at_mut(i);
        (&mut split.1[0], split.0)
    }

    #[inline]
    pub fn truncate(&mut self, len: NonZeroUsize) {
        self.0.truncate(len.get())
    }

    #[inline]
    pub fn resize(&mut self, new_len: NonZeroUsize, value: T)
    where
        T: Clone,
    {
        self.0.resize(new_len.get(), value)
    }

    #[inline]
    pub fn resize_with<F>(&mut self, new_len: NonZeroUsize, f: F)
    where
        F: FnMut() -> T,
    {
        self.0.resize_with(new_len.get(), f)
    }

    #[inline]
    pub fn pop(&mut self) -> Option<T> {
        if self.0.len() <= 1 {
            None
        } else {
            self.0.pop()
        }
    }

    #[inline]
    pub fn push(&mut self, v: T) {
        self.0.push(v)
    }

    #[inline]
    pub fn insert(&mut self, index: usize, element: T) {
        self.0.insert(index, element)
    }

    #[inline]
    pub fn remove(&mut self, index: usize) -> Option<T> {
        if index == 0 && self.0.len() == 1 {
            None
        } else {
            Some(self.0.remove(index))
        }
    }

    #[inline]
    pub fn swap_remove(&mut self, index: usize) -> Option<T> {
        if index == 0 && self.0.len() == 1 {
            None
        } else {
            Some(self.0.swap_remove(index))
        }
    }

    #[inline]
    pub fn append(&mut self, other: &mut Vec<T>) {
        self.0.append(other)
    }

    #[inline]
    pub fn extend_from_slice(&mut self, other: &[T])
    where
        T: Clone,
    {
        self.0.extend_from_slice(other)
    }

    #[inline]
    pub fn extend_from_within<R>(&mut self, src: R)
    where
        T: Clone,
        R: RangeBounds<usize>,
    {
        self.0.extend_from_within(src)
    }

    #[inline]
    pub fn dedup(&mut self)
    where
        T: PartialEq,
    {
        self.0.dedup()
    }

    #[inline]
    pub fn dedup_by<F>(&mut self, same_bucket: F)
    where
        F: FnMut(&mut T, &mut T) -> bool,
    {
        self.0.dedup_by(same_bucket)
    }

    #[inline]
    pub fn dedup_by_key<F, K>(&mut self, key: F)
    where
        F: FnMut(&mut T) -> K,
        K: PartialEq,
    {
        self.0.dedup_by_key(key)
    }
}

impl<T: Debug> Debug for NonEmpty<T> {
    #[inline]
    fn fmt(&self, f: &mut Formatter) -> core::fmt::Result {
        self.0.fmt(f)
    }
}

impl<T> From<(Vec<T>, T)> for NonEmpty<T> {
    fn from((mut xs, x): (Vec<T>, T)) -> NonEmpty<T> {
        xs.push(x);
        NonEmpty(xs)
    }
}

impl<T> From<(T, Vec<T>)> for NonEmpty<T> {
    fn from((x, mut xs): (T, Vec<T>)) -> NonEmpty<T> {
        xs.insert(0, x);
        NonEmpty(xs)
    }
}

impl<T> From<NonEmpty<T>> for Vec<T> {
    fn from(v: NonEmpty<T>) -> Self {
        v.0
    }
}

/// Returns a unit-length vector containing the default element value.
impl<T: Default> Default for NonEmpty<T> {
    fn default() -> Self {
        ne_vec![T::default()]
    }
}

impl<T> TryFrom<Vec<T>> for NonEmpty<T> {
    type Error = EmptyError;

    fn try_from(xs: Vec<T>) -> Result<Self, Self::Error> {
        if xs.is_empty() {
            Err(EmptyError)
        } else {
            Ok(NonEmpty(xs))
        }
    }
}

impl<T> From<Box<NonEmptySlice<T>>> for NonEmpty<T> {
    #[inline]
    fn from(slice: Box<NonEmptySlice<T>>) -> Self {
        let v = Vec::from(slice.into_boxed_slice());
        // SAFETY: We constructed this vector from a `NonEmptySlice`,
        // so it's guaranteed to be non-empty.
        unsafe { Self::new_unchecked(v) }
    }
}

impl<T> TryFrom<Box<[T]>> for NonEmpty<T> {
    type Error = EmptyError;

    #[inline]
    fn try_from(value: Box<[T]>) -> Result<Self, Self::Error> {
        let v = Vec::from(value);
        Self::try_from(v)
    }
}

impl<T> Deref for NonEmpty<T> {
    type Target = NonEmptySlice<T>;

    fn deref(&self) -> &Self::Target {
        unsafe {
            // SAFETY: This type is guaranteed to be non-empty, so we don't
            // need to check the length when wrapping into a `NonEmptySlice`.
            NonEmptySlice::unchecked(&self.0)
        }
    }
}

impl<T> DerefMut for NonEmpty<T> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        unsafe {
            // SAFETY: This type is guaranteed to be non-empty, so we don't
            // need to check the length when wrapping into a `NonEmptySlice`.
            NonEmptySlice::unchecked_mut(&mut self.0)
        }
    }
}

impl<T> AsRef<[T]> for NonEmpty<T> {
    #[inline]
    fn as_ref(&self) -> &[T] {
        self
    }
}

impl<T> AsMut<[T]> for NonEmpty<T> {
    #[inline]
    fn as_mut(&mut self) -> &mut [T] {
        self.0.as_mut()
    }
}

impl<T> AsRef<Vec<T>> for NonEmpty<T> {
    #[inline]
    fn as_ref(&self) -> &Vec<T> {
        &self.0
    }
}

impl<T> Borrow<[T]> for NonEmpty<T> {
    #[inline]
    fn borrow(&self) -> &[T] {
        self.0.borrow()
    }
}

impl<T> Borrow<Vec<T>> for NonEmpty<T> {
    #[inline]
    fn borrow(&self) -> &Vec<T> {
        &self.0
    }
}

impl<T> BorrowMut<[T]> for NonEmpty<T> {
    #[inline]
    fn borrow_mut(&mut self) -> &mut [T] {
        self.0.borrow_mut()
    }
}

impl<T, I: SliceIndex<[T]>> Index<I> for NonEmpty<T> {
    type Output = I::Output;

    #[inline]
    fn index(&self, index: I) -> &Self::Output {
        self.0.index(index)
    }
}

impl<T, I: SliceIndex<[T]>> IndexMut<I> for NonEmpty<T> {
    #[inline]
    fn index_mut(&mut self, index: I) -> &mut Self::Output {
        self.0.index_mut(index)
    }
}

impl<T> IntoIterator for NonEmpty<T> {
    type Item = T;
    type IntoIter = IntoIter<T>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.0.into_iter()
    }
}

impl<'a, T> IntoIterator for &'a NonEmpty<T> {
    type Item = &'a T;
    type IntoIter = Iter<'a, T>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

impl<'a, T> IntoIterator for &'a mut NonEmpty<T> {
    type Item = &'a mut T;
    type IntoIter = IterMut<'a, T>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.iter_mut()
    }
}

impl<T> Extend<T> for NonEmpty<T> {
    #[inline]
    fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) {
        self.0.extend(iter)
    }
}

impl<'a, T: Copy + 'a> Extend<&'a T> for NonEmpty<T> {
    #[inline]
    fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
        self.0.extend(iter)
    }
}

#[cfg(feature = "std")]
impl Write for NonEmpty<u8> {
    #[inline]
    fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
        self.0.write(buf)
    }

    #[inline]
    fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> std::io::Result<usize> {
        self.0.write_vectored(bufs)
    }

    #[inline]
    fn write_all(&mut self, buf: &[u8]) -> std::io::Result<()> {
        self.0.write_all(buf)
    }

    #[inline]
    fn flush(&mut self) -> std::io::Result<()> {
        self.0.flush()
    }
}

#[cfg(feature = "serde")]
impl<T: Serialize> Serialize for NonEmpty<T> {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        self.as_slice().serialize(serializer)
    }
}

#[cfg(feature = "serde")]
impl<'de, T: Deserialize<'de>> Deserialize<'de> for NonEmpty<T> {
    fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        Self::try_from(<Vec<T>>::deserialize(deserializer)?)
            .map_err(|_| D::Error::custom("vector must be non-empty"))
    }
}

impl<T> NonEmpty<T> {
    /// Removes the specified range from the vector in bulk, returning the removed items as an iterator.
    /// # Panics
    /// If the range specified would remove all elements from the vector. There must be at least 1 element left over.
    /// # Examples
    /// Removing all but the first element.
    /// ```
    /// # use non_empty_vec::{NonEmpty, ne_vec};
    /// let mut v = ne_vec!(0, 1, 2, 3, 4, 5);
    /// let removed: Vec<_> = v.drain(1..).collect();
    /// assert_eq!(removed, vec![1, 2, 3, 4, 5]);
    /// assert_eq!(v, ne_vec![0]);
    /// ```
    ///
    /// Removing all but the last element.
    /// ```
    /// # use non_empty_vec::{NonEmpty, ne_vec};
    /// let mut v = ne_vec!(0, 1, 2, 3, 4, 5);
    /// let removed: Vec<_> = v.drain(..v.len().get()-1).collect();
    /// assert_eq!(removed, vec![0, 1, 2, 3, 4]);
    /// assert_eq!(v, ne_vec![5]);
    /// ```
    /// Removing all elements (these panic).
    /// ```should_panic
    /// # use non_empty_vec::ne_vec;
    /// # let mut v = ne_vec!(0, 1, 2, 3, 4, 5);
    /// v.drain(..);
    /// ```
    /// ```should_panic
    /// # use non_empty_vec::ne_vec;
    /// # let mut v = ne_vec!(0, 1, 2, 3, 4, 5);
    /// v.drain(0..v.len().get());
    /// ```
    #[track_caller]
    pub fn drain<R: RangeBounds<usize>>(&mut self, range: R) -> Drain<T> {
        // whether or not there is space leftover in the start of the vector.
        let leftover_start = match range.start_bound() {
            Bound::Included(&start) => start > 0,
            Bound::Excluded(_) => true,
            Bound::Unbounded => false,
        };
        if !leftover_start {
            // whether or not there is space leftover in the end of the vector.
            let leftover_end = match range.end_bound() {
                Bound::Excluded(&end) => end < self.len().get(),
                Bound::Included(&end) => end < self.len().get() - 1,
                Bound::Unbounded => false,
            };
            if !leftover_end {
                panic!(
                    "range specified for `NonEmpty::drain` must leave at least one element left"
                );
            }
        }
        self.0.drain(range)
    }

    /// Calls a predicate with every element of this vector, removing each element for which the predicate returns `true`.
    /// All removed elements are yielded from the returned iterator.
    /// # Examples
    /// Normal use.
    /// ```
    /// // Filter out odd entries
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1,2,3,4,5,6];
    /// assert!(v.drain_filter(|i| *i % 2 == 1).eq([1, 3, 5]));
    /// assert_eq!(v, ne_vec![2, 4, 6]);
    /// ```
    /// At least one element is always left behind.
    /// ```
    /// // When there's only one element left, the predicate never even gets called on it.
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1];
    /// v.drain_filter(|_| unreachable!());
    /// assert_eq!(v, ne_vec![1]);
    ///
    /// // This also applies if all elements before the final get removed.
    /// let mut v = ne_vec![1, 2, 3, 4, 5];
    /// let removed = v.drain_filter(|&mut i| if i < 5 {
    ///     true
    /// } else {
    ///     unreachable!()
    /// });
    /// assert!(removed.eq(1..=4));
    /// assert_eq!(v, ne_vec![5]);
    /// ```
    /// Lazy execution.
    /// ```
    /// // Nothing gets removed until the iterator is consumed
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1,2,3,4];
    /// v.drain_filter(|_| true);
    /// assert_eq!(v, ne_vec![1,2,3,4]);
    /// ```
    #[inline]
    pub fn drain_filter<F>(&mut self, f: F) -> DrainFilter<T, F>
    where
        F: FnMut(&mut T) -> bool,
    {
        DrainFilter::new(self, f)
    }
}

#[must_use = "iterators are lazy and do nothing unless consumed"]
pub struct DrainFilter<'a, T, F>
where
    F: FnMut(&mut T) -> bool,
{
    vec: &'a mut NonEmpty<T>,
    f: F,

    // Always `0 <= left <= right <= vec.len()`, usually `left < right`.
    // When `left == right`, the iterator is complete.
    left: usize,
    right: usize,
}

impl<'a, T, F> DrainFilter<'a, T, F>
where
    F: FnMut(&mut T) -> bool,
{
    #[inline]
    pub fn new(vec: &'a mut NonEmpty<T>, f: F) -> Self {
        let left = 0;
        let right = vec.len().get();
        Self {
            vec,
            f,
            left,
            right,
        }
    }
}

impl<'a, T, F> Iterator for DrainFilter<'a, T, F>
where
    F: FnMut(&mut T) -> bool,
{
    type Item = T;

    fn next(&mut self) -> Option<Self::Item> {
        // Loop until either we find an element or the list is depleted.
        loop {
            // Only try draining this element if there would be more elements leftover.
            let any_yielded = self.left > 0 || self.right < self.vec.0.len();
            if (any_yielded || self.right - self.left > 1) && self.left < self.right {
                // If the elment passes the predicate, remove it and yield it.
                if (self.f)(&mut self.vec[self.left]) {
                    let item = self.vec.0.remove(self.left);
                    self.right -= 1;
                    break Some(item);
                }
                // If it doesn't pass, leave the element and repeat the loop.
                else {
                    self.left += 1;
                }
            }
            // We've reached the point where we only have one element left, so leave it.
            else {
                break None;
            }
        }
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        let max = self.right - self.left;
        (0, Some(max))
    }
}

impl<'a, T, F> DoubleEndedIterator for DrainFilter<'a, T, F>
where
    F: FnMut(&mut T) -> bool,
{
    fn next_back(&mut self) -> Option<Self::Item> {
        // Loop until either we find an element or the list is depleted.
        loop {
            // Only try draining this element if there would be more elements leftover.
            let any_yielded = self.right < self.vec.0.len() || self.left > 0;
            if (any_yielded || self.right - self.left > 1) && self.right > self.left {
                // If the elment passes the predicate, remove it and yield it.
                if (self.f)(&mut self.vec[self.right - 1]) {
                    let item = self.vec.0.remove(self.right - 1);
                    self.right -= 1;
                    break Some(item);
                }
                // If it doesn't pass, leave the element and repeat the loop.
                else {
                    self.right -= 1;
                }
            }
            // We've reached the point where we only have one element left, so leave it.
            else {
                break None;
            }
        }
    }
}

impl<'a, T, F> FusedIterator for DrainFilter<'a, T, F> where F: FnMut(&mut T) -> bool {}

/// Wrapper for a slice that is guaranteed to have `len > 0`. This allows
/// many operations to be infallible, such as [`first`](#method.first)
/// or [`split_last_mut`](#method.split_last_mut).
///
/// This invariant may be relied upon in unsafe code.
///
/// `NonEmptySlice` dereferences to an `std` slice, so all of the familiar methods are still available.
#[derive(Eq, Ord, Hash)]
#[repr(transparent)]
pub struct NonEmptySlice<T>([T]);

impl<T> NonEmptySlice<T> {
    /// Creates a new `NonEmptySlice` without checking the length.
    /// # Safety
    /// Ensure that the input slice is not empty.
    /// # Examples
    /// For a slice that is known not to be empty.
    /// ```
    /// # use non_empty_vec::NonEmptySlice;
    /// let s = unsafe {
    ///     // SAFETY: The passed slice is non-empty.
    ///     NonEmptySlice::unchecked(&[1])
    /// };
    /// assert_eq!(s, &[1]);
    /// ```
    /// Improper use (instant undefined behavior).
    /// ```ignore
    /// # use non_empty_vec::NonEmptySlice;
    /// let s: &NonEmptySlice<String> = unsafe { NonEmptySlice::unchecked(&[]) };
    /// // Please don't try this.
    /// println!("{}", s.first().as_str());
    /// ```
    #[inline]
    pub const unsafe fn unchecked(slice: &[T]) -> &Self {
        debug_assert!(!slice.is_empty());
        // SAFETY: This type is `repr(transparent)`, so we can safely
        // cast the references like this.
        &*(slice as *const _ as *const Self)
    }

    /// Creates a new `NonEmptySlice` without checking the length.
    /// # Safety
    /// Ensure that the input slice is not empty.
    #[inline]
    pub unsafe fn unchecked_mut(slice: &mut [T]) -> &mut Self {
        debug_assert!(!slice.is_empty());
        // SAFETY: This type is `repr(transparent)`, so we can safely
        // cast the references like this.
        &mut *(slice as *mut _ as *mut Self)
    }

    /// Creates a boxed `NonEmptySlice` without checking the length.
    /// # Safety
    /// Ensure that the input slice is not empty.
    #[inline]
    pub unsafe fn unchecked_boxed(slice: Box<[T]>) -> Box<Self> {
        debug_assert!(!slice.is_empty());
        // SAFETY: This type is `repr(transparent)`, so we can safely
        // cast the pointers like this.
        // `Box` does not necessarily have a guaranteed type layout
        // so it's safer to use methods to convert to/from raw pointers.
        let ptr = Box::into_raw(slice) as *mut Self;
        Box::from_raw(ptr)
    }

    /// Converts a reference into a [non-empty slice](NonEmptySlice) of length `1`.
    /// # Example
    /// ```
    /// # use non_empty_vec::NonEmptySlice;
    /// let slice = NonEmptySlice::from_ref(&5);
    /// assert_eq!(slice, &[5]);
    /// ```
    #[inline]
    pub fn from_ref(val: &T) -> &Self {
        let slice = core::slice::from_ref(val);
        // SAFETY: `slice::from_ref` returns a slice of length 1, so it's non-empty.
        unsafe { Self::unchecked(slice) }
    }

    /// Converts a mutable reference into a [non-empty slice](NonEmptySlice) of length `1`.
    #[inline]
    pub fn from_mut(val: &mut T) -> &mut Self {
        let slice = core::slice::from_mut(val);
        unsafe { Self::unchecked_mut(slice) }
    }

    /// Creates a new `NonEmptySlice` from a primitive slice. Returns [`None`] if the slice is empty.
    /// # Examples
    /// ```
    /// # use non_empty_vec::NonEmptySlice;
    /// // Non-empty input
    /// assert!(NonEmptySlice::from_slice(&[1]).is_some());
    /// // Empty input
    /// assert!(NonEmptySlice::<()>::from_slice(&[]).is_none());
    /// ```
    #[inline]
    pub const fn from_slice(slice: &[T]) -> Option<&Self> {
        if !slice.is_empty() {
            // SAFETY: We just checked that it's not empty,
            // so we can safely create a `NonEmptySlice`.
            unsafe { Some(Self::unchecked(slice)) }
        } else {
            None
        }
    }

    /// Creates a new `NonEmptySlice` from a primitive slice. Returns [`None`] if the slice is empty.
    #[inline]
    pub fn from_mut_slice(slice: &mut [T]) -> Option<&mut Self> {
        if !slice.is_empty() {
            // SAFETY: We just checked that it's not empty,
            // so we can safely create a `NonEmptySlice`.
            unsafe { Some(Self::unchecked_mut(slice)) }
        } else {
            None
        }
    }

    /// Creates a new `NonEmptySlice` from a primitive slice. Returns [`None`] if the slice is empty.
    #[inline]
    pub fn from_boxed_slice(slice: Box<[T]>) -> Option<Box<Self>> {
        if !slice.is_empty() {
            // SAFETY: We just checked that it's not empty,
            // so we can safely create a `NonEmptySlice`.
            unsafe { Some(Self::unchecked_boxed(slice)) }
        } else {
            None
        }
    }

    /// Converts this `NonEmptySlice` into a primitive slice.
    #[inline]
    pub const fn as_slice(&self) -> &[T] {
        &self.0
    }

    /// Converts this `NonEmptySlice` into a primitive slice.
    #[inline]
    pub fn as_mut_slice(&mut self) -> &mut [T] {
        &mut self.0
    }

    /// Converts this `NonEmptySlice` into a primitive boxed slice.
    #[inline]
    pub fn into_boxed_slice(self: Box<Self>) -> Box<[T]> {
        // SAFETY: This type is `repr(transparent)`, so we can
        // safely cast the pointer like this.
        let ptr = Box::into_raw(self) as *mut [T];
        unsafe { Box::from_raw(ptr) }
    }

    /// Returns the length of this slice.
    #[inline]
    pub const fn len(&self) -> NonZeroUsize {
        unsafe { NonZeroUsize::new_unchecked(self.0.len()) }
    }

    /// Returns `false`.
    #[inline]
    pub const fn is_empty(&self) -> bool {
        false
    }

    /// Returns a raw pointer to this slice's buffer. See [`slice::as_ptr`] for more info.
    #[inline]
    pub const fn as_ptr(&self) -> *const T {
        self.0.as_ptr()
    }

    /// Returns a raw pointer to this slice's buffer. See [`slice::as_ptr`] for more info.
    #[inline]
    pub fn as_mut_ptr(&mut self) -> *mut T {
        self.0.as_mut_ptr()
    }

    /// Returns a reference to the first element of this slice.
    /// # Example
    /// ```
    /// # use non_empty_vec::ne_vec;
    /// let v = ne_vec![1, 2, 3];
    /// assert_eq!(v.first(), &1);
    /// ```
    #[inline]
    pub const fn first(&self) -> &T {
        if let [first, ..] = self.as_slice() {
            first
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Returns a mutable reference to the first element of this slice.
    /// # Example
    /// ```
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1, 2, 3];
    /// *v.first_mut() = 10;
    /// assert_eq!(v, ne_vec![10, 2, 3]);
    /// ```
    #[inline]
    pub fn first_mut(&mut self) -> &mut T {
        if let [first, ..] = self.as_mut_slice() {
            first
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Returns a reference to the last element of this slice.
    /// # Example
    /// ```
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1, 2, 3];
    /// assert_eq!(v.last(), &3);
    /// ```
    #[inline]
    pub const fn last(&self) -> &T {
        if let [.., last] = self.as_slice() {
            last
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Returns a mutable reference to the last element of this slice.
    /// # Example
    /// ```
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1, 2, 3];
    /// *v.last_mut() = 10;
    /// assert_eq!(v, ne_vec![1, 2, 10]);
    /// ```
    #[inline]
    pub fn last_mut(&mut self) -> &mut T {
        if let [.., last] = self.as_mut_slice() {
            last
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Splits this slice into
    /// * A reference to the first element.
    /// * A slice to the rest of the elements.
    ///
    /// This method is not usually very helpful, but it may shorten some expressions.
    /// It is mainly included for the sake of parity with [`split_first_mut`](#method.split_first_mut).
    #[inline]
    pub const fn split_first(&self) -> (&T, &[T]) {
        if let [first, rest @ ..] = self.as_slice() {
            (first, rest)
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Splits this slice into
    /// * A mutable reference to the first element.
    /// * A mutable slice to the rest of the elements.
    ///
    /// This method is useful for breaking up a contiguous slice into multiple
    /// smaller references, which can each be mutated independently without
    /// tripping off the borrow checker.
    ///
    /// # Examples
    /// ```
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![1, 2, 3, 4];
    /// let (first, rest) = v.split_first_mut();
    /// *first *= 2;
    /// rest[1] += 2;
    /// assert_eq!(v, ne_vec![2, 2, 5, 4]);
    /// ```
    ///
    /// Only one element.
    /// ```
    /// # use non_empty_vec::ne_vec;
    /// let mut v = ne_vec![4];
    /// let (first, rest) = v.split_first_mut();
    /// assert_eq!(*first, 4);
    /// assert_eq!(rest, &[]);
    /// ```
    #[inline]
    pub fn split_first_mut(&mut self) -> (&mut T, &mut [T]) {
        if let [first, rest @ ..] = self.as_mut_slice() {
            (first, rest)
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Splits this slice into
    /// * A reference to the last element.
    /// * A slice to the rest of the elements.
    ///
    /// This method is not usually very helpful, but it may shorten some expressions.
    /// It is mainly included for the sake of parity with [`split_last_mut`](#method.split_last_mut).
    #[inline]
    pub fn split_last(&self) -> (&T, &[T]) {
        if let [rest @ .., last] = self.as_slice() {
            (last, rest)
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }

    /// Splits this slice into
    /// * A mutable reference to the last element.
    /// * A mutable slice to the rest of the elements.
    ///
    /// This method is useful for breaking up a contiguous slice into multiple
    /// smaller references, which can each be mutated independently without
    /// tripping off the borrow checker.
    #[inline]
    pub fn split_last_mut(&mut self) -> (&mut T, &mut [T]) {
        if let [rest @ .., last] = self.as_mut_slice() {
            (last, rest)
        } else {
            // SAFETY: This instance is non-empty, so the above pattern will always match.
            unsafe { unreachable_unchecked!() }
        }
    }
}

impl<'a, T> TryFrom<&'a [T]> for &'a NonEmptySlice<T> {
    type Error = EmptyError;

    fn try_from(value: &'a [T]) -> Result<Self, Self::Error> {
        NonEmptySlice::from_slice(value).ok_or(EmptyError)
    }
}

impl<'a, T> TryFrom<&'a mut [T]> for &'a mut NonEmptySlice<T> {
    type Error = EmptyError;

    fn try_from(value: &'a mut [T]) -> Result<Self, Self::Error> {
        NonEmptySlice::from_mut_slice(value).ok_or(EmptyError)
    }
}

impl<T> TryFrom<Box<[T]>> for Box<NonEmptySlice<T>> {
    type Error = EmptyError;

    fn try_from(value: Box<[T]>) -> Result<Self, Self::Error> {
        NonEmptySlice::from_boxed_slice(value).ok_or(EmptyError)
    }
}

impl<T> Deref for NonEmptySlice<T> {
    type Target = [T];
    #[inline]
    fn deref(&self) -> &Self::Target {
        self.as_slice()
    }
}

impl<T> DerefMut for NonEmptySlice<T> {
    #[inline]
    fn deref_mut(&mut self) -> &mut Self::Target {
        self.as_mut_slice()
    }
}

impl<T> AsRef<[T]> for NonEmptySlice<T> {
    #[inline]
    fn as_ref(&self) -> &[T] {
        self
    }
}

impl<T> AsMut<[T]> for NonEmptySlice<T> {
    #[inline]
    fn as_mut(&mut self) -> &mut [T] {
        self
    }
}

impl<T: Debug> Debug for NonEmptySlice<T> {
    fn fmt(&self, f: &mut Formatter) -> core::fmt::Result {
        write!(f, "{:?}", &self.0)
    }
}

impl<T: PartialEq, U: ?Sized + AsRef<[T]>> PartialEq<U> for NonEmptySlice<T> {
    #[inline]
    fn eq(&self, other: &U) -> bool {
        &self.0 == other.as_ref()
    }
}

impl<T: PartialEq> PartialEq<NonEmptySlice<T>> for [T] {
    #[inline]
    fn eq(&self, other: &NonEmptySlice<T>) -> bool {
        *self == other.0
    }
}

impl<T: PartialOrd, U: ?Sized + AsRef<[T]>> PartialOrd<U> for NonEmptySlice<T> {
    #[inline]
    fn partial_cmp(&self, other: &U) -> Option<core::cmp::Ordering> {
        self.0.partial_cmp(other.as_ref())
    }
}

impl<T: PartialOrd> PartialOrd<NonEmptySlice<T>> for [T] {
    #[inline]
    fn partial_cmp(&self, other: &NonEmptySlice<T>) -> Option<core::cmp::Ordering> {
        self.partial_cmp(&other.0)
    }
}

impl<'a, T> IntoIterator for &'a NonEmptySlice<T> {
    type Item = &'a T;
    type IntoIter = Iter<'a, T>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

impl<'a, T> IntoIterator for &'a mut NonEmptySlice<T> {
    type Item = &'a mut T;
    type IntoIter = IterMut<'a, T>;

    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.iter_mut()
    }
}

/// Required to be used in the [`ne_vec`] macro.
#[doc(hidden)]
pub use alloc::vec as __vec;

/// Constructs a [`NonEmpty`] vector, similar to `std`'s [`vec`](std::vec!) macro.
///
/// This macro will generally try to check the validity of the length at compile time if it can.
///
/// If the length is an expression (e.g. `ne_vec![(); { 0 }]`), the check is performed at runtime
/// to allow the length to be dynamic.
///
/// # Examples
///
/// Proper use.
///
/// ```
/// # use non_empty_vec::*;
/// # use std::convert::TryFrom;
/// assert_eq!(
///     ne_vec![1, 2, 3],
///     NonEmpty::try_from(vec![1, 2, 3_i32]).unwrap(),
/// );
///
/// assert_eq!(
///     ne_vec![1; 3],
///     NonEmpty::try_from(vec![1, 1, 1]).unwrap(),
/// );
/// ```
///
/// Improper use.
///
/// ```compile_fail
/// # use non_empty_vec::*;
/// let _ = ne_vec![];
/// ```
///
/// ```compile_fail
/// # use non_empty_vec::*;
/// let _ = ne_vec![1; 0];
/// ```
///
/// ```compile_fail
/// # use non_empty_vec::*;
/// let _ = ne_vec![1; 0usize];
/// ```
///
/// ```should_panic
/// # use non_empty_vec::*;
/// let n = 0;
/// let _ = ne_vec![1; n];
/// ```
#[macro_export]
macro_rules! ne_vec {
    () => {
        ::core::compile_error!("`NonEmpty` vector must be non-empty")
    };
    ($($x:expr),+ $(,)?) => {{
        let vec = $crate::__vec![$($x),+];
        unsafe { $crate::NonEmpty::new_unchecked(vec) }
    }};
    ($elem:expr; 0) => {
        // if 0 is passed to the macro we can generate a good compile error
        $crate::ne_vec![]
    };
    ($elem:expr; $n:literal) => {{
        // extra guard to reject compilation if $n ends up being 0 in some other way (e.g. ne_vec![1; 0usize])
        const _ASSERT_NON_ZERO: [(); $n - 1] = [(); $n - 1];
        let vec = $crate::__vec![$elem; $n];
        unsafe { $crate::NonEmpty::new_unchecked(vec) }
    }};
    ($elem:expr; $n:expr) => {{
        // if $n is an expression, we cannot check the length at compile time and do it at runtime
        let len = $n;
        if len == 0 {
            ::core::panic!("`NonEmpty` vector must be non-empty");
        }
        let vec = $crate::__vec![$elem; len];
        unsafe { $crate::NonEmpty::new_unchecked(vec) }
    }};
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        // From
        let mut list: NonEmpty<i32> = (vec![1, 2], 3).into();
        assert_eq!(list, (1, vec![2, 3]).into());
        assert_eq!(&*list, &[1, 2, 3]);

        // Index
        list[0] = 2;
        assert_eq!(list[0], 2);
        list[0] = 1;
        assert_eq!(list[0], 1);

        // slice methods
        assert_eq!(list.len().get(), 3);
        assert_eq!(list.as_slice(), &[1, 2, 3]);

        // TryFrom
        assert_eq!(<NonEmpty<i32>>::try_from(vec![]).ok(), None);
        assert_eq!(
            &*<NonEmpty<i32>>::try_from(vec![1, 2, 3]).unwrap(),
            &[1, 2, 3]
        );

        // Iterator
        assert_eq!(
            list.iter().map(|n| n * 2).collect::<Vec<_>>(),
            vec![2, 4, 6]
        );

        // Single
        let single = NonEmpty::new(15_i32);
        assert_eq!(single.len().get(), 1);
        assert_eq!(single[0], 15);
    }

    #[test]
    fn default() {
        assert_eq!(NonEmpty::<i32>::default(), ne_vec![0]);
        assert_eq!(NonEmpty::<&str>::default(), ne_vec![""]);
    }

    #[test]
    fn into_iter() {
        let mut list = ne_vec![1, 2, 3];

        for (a, b) in [1, 2, 3].iter().zip(&list) {
            assert_eq!(a, b);
        }

        for a in &mut list {
            *a += 1;
        }
        assert_eq!(list.as_slice(), &[2, 3, 4]);

        for (a, b) in vec![2, 3, 4].into_iter().zip(list) {
            assert_eq!(a, b);
        }
    }

    #[test]
    fn drain_filter() {
        // Filter out odd numbers.
        let mut v = ne_vec![1, 2, 3, 4, 5, 6];
        assert!(v.drain_filter(|val| *val % 2 == 1).eq([1, 3, 5]));
        assert_eq!(v, ne_vec![2, 4, 6]);

        // singleton
        let mut v = ne_vec![1];
        for _ in v.drain_filter(|_| unreachable!()) {}
        assert_eq!(v, ne_vec![1]);

        // leftover
        let mut v = ne_vec![1, 2, 3];
        let removed = v.drain_filter(|&mut val| if val < 3 { true } else { unreachable!() });
        assert!(removed.eq([1, 2]));
        assert_eq!(v, ne_vec![3]);

        // double-ended, meet in middle
        let mut v = ne_vec![1, 2, 3, 4, 5, 6];
        let mut rem = v.drain_filter(|val| *val % 2 == 1);
        assert_eq!(rem.next(), Some(1));
        assert_eq!(rem.next_back(), Some(5));
        assert_eq!(rem.next_back(), Some(3));
        assert_eq!(rem.next(), None);
        assert_eq!(rem.next_back(), None);

        // rev
        let mut v = ne_vec![1, 2, 3, 4, 5, 6];
        let rem = v.drain_filter(|val| *val % 2 == 0).rev();
        assert!(rem.eq([6, 4, 2]));
        assert_eq!(v, ne_vec![1, 3, 5]);

        // singleton-back
        let mut v = ne_vec![1];
        for _ in v.drain_filter(|_| unreachable!()) {}
        assert_eq!(v, ne_vec![1]);

        // leftover-back
        let mut v = ne_vec![1, 2, 3];
        let removed = v
            .drain_filter(|&mut val| if val > 1 { true } else { unreachable!() })
            .rev();
        assert!(removed.eq([3, 2]));
        assert_eq!(v, ne_vec![1]);

        // meet in middle, unreachable
        let mut v = ne_vec![1, 2, 3];
        let mut rem = v.drain_filter(|&mut val| if val == 2 { unreachable!() } else { true });
        assert_eq!(rem.next_back(), Some(3));
        assert_eq!(rem.next(), Some(1));
        assert_eq!(rem.next_back(), None);
        assert_eq!(rem.next(), None);
        assert_eq!(v, ne_vec![2]);
    }

    #[test]
    fn initialize_macro() {
        assert_eq!(ne_vec![1; 3].as_slice(), &[1, 1, 1]);
        assert_eq!(ne_vec!["string"; 5].as_slice(), &["string"; 5]);
    }

    #[test]
    #[should_panic]
    fn initialize_macro_zero_size() {
        // ne_vec![1; 0] results in a compile error
        let n = 0;
        let _ = ne_vec![1; n];
    }

    #[test]
    fn initialize_macro_fake_vec() {
        #[allow(unused_macros)]
        macro_rules! vec {
            ($($x:tt)*) => {
                Vec::new()
            };
        }

        // ne_vec! should not be affected by a fake vec! macro being in scope.
        let list: NonEmpty<u32> = ne_vec![1, 2, 3];
        assert_eq!(list.len().get(), 3);
    }

    #[cfg(feature = "serde")]
    #[test]
    fn serialize() {
        let vec: NonEmpty<u32> = (1, vec![]).into();
        assert_eq!(
            serde_json::from_str::<NonEmpty<u32>>(&serde_json::to_string(&vec).unwrap()).unwrap(),
            vec
        );
    }
}