ps-util 0.1.0-7

This crate aims to provide generally helpful utility functions and traits.
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
use std::{cmp::Ordering, fmt::Write};

use crate::{subarray, subarray_checked, subarray_unchecked};

pub trait Array<T> {
    /// Returns a reference to the element at the specified index,
    /// or `None` if the index is out of bounds.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert_eq!(arr.at(0), Some(&1));
    /// assert_eq!(arr.at(5), None);
    /// ```
    fn at(&self, index: usize) -> Option<&T>;

    /// Concatenates this array with another slice and returns a new vector.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2];
    /// let result = arr.concat(&[3, 4]);
    /// assert_eq!(result, vec![1, 2, 3, 4]);
    /// ```
    fn concat(&self, other: impl AsRef<[T]>) -> Vec<T>
    where
        T: Clone;

    /// Returns an iterator of (index, &T) tuples for each element.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = ['a', 'b'];
    /// let entries: Vec<_> = arr.entries().collect();
    /// assert_eq!(entries, vec![(0, &'a'), (1, &'b')]);
    /// ```
    fn entries<'a>(&'a self) -> impl Iterator<Item = (usize, &'a T)>
    where
        T: 'a;

    /// Tests whether all elements match the predicate.
    ///
    /// Returns `true` if the predicate returns `true` for every element,
    /// or if the array is empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [2, 4, 6];
    /// assert!(arr.every(|x| x % 2 == 0));
    /// assert!(!arr.every(|x| x > &5));
    /// ```
    fn every(&self, predicate: impl FnMut(&T) -> bool) -> bool;

    /// Tests whether all elements are equal to the comparator target.
    ///
    /// Returns `true` if the array is empty or every element compares as
    /// [`Ordering::Equal`].
    ///
    /// **Only the first and last elements are checked.**
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(1)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    ///
    /// let arr = [2, 2, 2];
    /// assert!(arr.every_equal_in_sorted_by(|x| x.cmp(&2)));
    ///
    /// let arr = [1, 2, 2];
    /// assert!(!arr.every_equal_in_sorted_by(|x| x.cmp(&2)));
    /// ```
    fn every_equal_in_sorted_by(&self, comparator: impl FnMut(&T) -> Ordering) -> bool;

    /// Returns a reference to the first element that matches the predicate.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.find(|x| x > &2), Some(&3));
    /// assert_eq!(arr.find(|x| x > &10), None);
    /// ```
    fn find(&self, predicate: impl FnMut(&T) -> bool) -> Option<&T>;

    /// Returns the first element equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 2, 3];
    /// assert_eq!(arr.find_equal_in_sorted_by(|x| x.cmp(&2)), Some(&2));
    /// assert_eq!(arr.find_equal_in_sorted_by(|x| x.cmp(&5)), None);
    /// ```
    fn find_equal_in_sorted_by(&self, comparator: impl FnMut(&T) -> Ordering) -> Option<&T>;

    /// Returns the index of the first element that matches the predicate.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.find_index(|x| x > &2), Some(2));
    /// assert_eq!(arr.find_index(|x| x > &10), None);
    /// ```
    fn find_index(&self, predicate: impl FnMut(&T) -> bool) -> Option<usize>;

    /// Returns the index of the first element equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 2, 3];
    /// assert_eq!(arr.find_index_equal_in_sorted_by(|x| x.cmp(&2)), Some(1));
    /// assert_eq!(arr.find_index_equal_in_sorted_by(|x| x.cmp(&5)), None);
    /// ```
    fn find_index_equal_in_sorted_by(
        &self,
        comparator: impl FnMut(&T) -> Ordering,
    ) -> Option<usize>;

    /// Returns a reference to the last element that matches the predicate.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.find_last(|x| x < &4), Some(&3));
    /// assert_eq!(arr.find_last(|x| x > &10), None);
    /// ```
    fn find_last(&self, predicate: impl FnMut(&T) -> bool) -> Option<&T>;

    /// Returns the last element equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 2, 3];
    /// assert_eq!(arr.find_last_equal_in_sorted_by(|x| x.cmp(&2)), Some(&2));
    /// assert_eq!(arr.find_last_equal_in_sorted_by(|x| x.cmp(&5)), None);
    /// ```
    fn find_last_equal_in_sorted_by(&self, comparator: impl FnMut(&T) -> Ordering) -> Option<&T>;

    /// Returns the index of the last element that matches the predicate.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.find_last_index(|x| x < &4), Some(2));
    /// assert_eq!(arr.find_last_index(|x| x > &10), None);
    /// ```
    fn find_last_index(&self, predicate: impl FnMut(&T) -> bool) -> Option<usize>;

    /// Returns the index of the last element equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 2, 3];
    /// assert_eq!(arr.find_last_index_equal_in_sorted_by(|x| x.cmp(&2)), Some(3));
    /// assert_eq!(arr.find_last_index_equal_in_sorted_by(|x| x.cmp(&5)), None);
    /// ```
    fn find_last_index_equal_in_sorted_by(
        &self,
        comparator: impl FnMut(&T) -> Ordering,
    ) -> Option<usize>;

    /// Returns a vector containing all elements that match the predicate.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.filter(|x| x % 2 == 0), vec![2, 4]);
    /// ```
    fn filter(&self, predicate: impl FnMut(&T) -> bool) -> Vec<T>
    where
        T: Clone;

    /// Returns all elements equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n + k)`, where `k` is the number of matches.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 2, 3];
    /// assert_eq!(arr.filter_equal_in_sorted_by(|x| x.cmp(&2)), vec![2, 2, 2]);
    /// assert_eq!(arr.filter_equal_in_sorted_by(|x| x.cmp(&5)), Vec::<i32>::new());
    /// ```
    fn filter_equal_in_sorted_by(&self, comparator: impl FnMut(&T) -> Ordering) -> Vec<T>
    where
        T: Clone;

    /// Flattens a level of nesting in an array of iterables.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [vec![1, 2], vec![3, 4]];
    /// assert_eq!(arr.flat(), vec![1, 2, 3, 4]);
    /// ```
    fn flat(&self) -> Vec<T::Item>
    where
        T: Clone + IntoIterator;

    /// Maps each element to an iterable and flattens the result.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// let result = arr.flat_map(|x| vec![*x, *x * 2]);
    /// assert_eq!(result, vec![1, 2, 2, 4, 3, 6]);
    /// ```
    fn flat_map<O, I>(&self, mapper: impl FnMut(&T) -> I) -> Vec<O>
    where
        I: IntoIterator<Item = O>;

    /// Applies a closure to each element for side effects.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// arr.for_each(|x| println!("{}", x));
    /// ```
    fn for_each(&self, cb: impl FnMut(&T));

    /// Checks whether the array contains the specified value.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert!(arr.includes(&2));
    /// assert!(!arr.includes(&5));
    /// ```
    fn includes(&self, value: &T) -> bool
    where
        T: PartialEq;

    /// Returns the index of the first occurrence of the specified value,
    /// or `None` if not found.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 2];
    /// assert_eq!(arr.index_of(&2), Some(1));
    /// assert_eq!(arr.index_of(&5), None);
    /// ```
    fn index_of(&self, value: &T) -> Option<usize>
    where
        T: PartialEq;

    /// Returns `true` if the array is empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// assert!(Vec::<i32>::new().is_empty());
    /// assert!(![1].is_empty());
    /// ```
    fn is_empty(&self) -> bool;

    /// Concatenates all elements into a string, separated by the given separator.
    ///
    /// # Errors
    ///
    /// Errors are passed from the [`std::fmt::Display`] implementation.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert_eq!(arr.join(", ").unwrap(), "1, 2, 3");
    /// ```
    fn join(&self, separator: &str) -> Result<String, std::fmt::Error>
    where
        T: std::fmt::Display;

    /// Returns an iterator of indices (0, 1, 2, ...).
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = ['a', 'b', 'c'];
    /// let keys: Vec<_> = arr.keys().collect();
    /// assert_eq!(keys, vec![0, 1, 2]);
    /// ```
    fn keys(&self) -> impl Iterator<Item = usize>;

    /// Returns the index of the last occurrence of the specified value,
    /// or `None` if not found.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 2];
    /// assert_eq!(arr.last_index_of(&2), Some(3));
    /// assert_eq!(arr.last_index_of(&5), None);
    /// ```
    fn last_index_of(&self, value: &T) -> Option<usize>
    where
        T: PartialEq;

    /// Returns the number of elements in the array.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert_eq!(arr.len(), 3);
    /// ```
    fn len(&self) -> usize;

    /// Transforms each element using the provided mapper function
    /// and returns a vector of the results.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3u8];
    /// assert_eq!(arr.as_slice().map(|x| x * 2), vec![2, 4, 6]);
    /// ```
    fn map<O>(&self, mapper: impl FnMut(&T) -> O) -> Vec<O>;

    /// Reduces the array to a single value by applying a callback
    /// with an accumulator, starting from the left.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// let sum = arr.reduce(|acc, x| acc + x, 0);
    /// assert_eq!(sum, 10);
    /// ```
    fn reduce<O>(&self, reducer: impl FnMut(O, &T) -> O, initial: O) -> O;

    /// Reduces the array to a single value by applying a callback
    /// with an accumulator, starting from the right.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// let result = arr.reduce_right(
    ///     |acc, x| format!("{}{}", acc, x),
    ///     String::new()
    /// );
    /// assert_eq!(result, "321");
    /// ```
    fn reduce_right<O>(&self, reducer: impl FnMut(O, &T) -> O, initial: O) -> O;

    /// Returns a slice of the array from `start` to `end` (exclusive).
    ///
    /// If `end` is `None`, slices to the end of the array. Indices are clamped
    /// to valid bounds; if `start` exceeds the array length, an empty slice
    /// is returned.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.slice(1, Some(3)), &[2, 3][..]);
    /// assert_eq!(arr.slice(2, None), &[3, 4][..]);
    /// assert_eq!(arr.slice(10, Some(20)), &[][..]);
    /// ```
    fn slice(&self, start: usize, end: Option<usize>) -> &[T];

    /// Tests whether any element matches the predicate.
    ///
    /// Returns `true` if the predicate returns `true` for at least one element.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert!(arr.some(|x| x > &2));
    /// assert!(!arr.some(|x| x > &10));
    /// ```
    fn some(&self, predicate: impl FnMut(&T) -> bool) -> bool;

    /// Tests whether any element is equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 3];
    /// assert!(arr.some_equal_in_sorted_by(|x| x.cmp(&2)));
    /// assert!(!arr.some_equal_in_sorted_by(|x| x.cmp(&5)));
    /// ```
    fn some_equal_in_sorted_by(&self, comparator: impl FnMut(&T) -> Ordering) -> bool;

    /// Tests whether no elements match the predicate.
    ///
    /// Returns `true` if the predicate returns `false` for every element,
    /// or if the array is empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert!(arr.none(|x| x > &10));
    /// assert!(!arr.none(|x| x > &2));
    /// ```
    fn none(&self, predicate: impl FnMut(&T) -> bool) -> bool;

    /// Tests whether no element is equal to the comparator target.
    ///
    /// The slice must be sorted according to the same ordering used by
    /// `comparator`.
    ///
    /// Time complexity: `O(log n)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 2, 3];
    /// assert!(arr.none_equal_in_sorted_by(|x| x.cmp(&5)));
    /// assert!(!arr.none_equal_in_sorted_by(|x| x.cmp(&2)));
    /// ```
    fn none_equal_in_sorted_by(&self, comparator: impl FnMut(&T) -> Ordering) -> bool;

    /// Returns a fixed-size array reference starting at the given index.
    ///
    /// # Panics
    ///
    /// Panics if there are not enough elements remaining in the array.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// assert_eq!(arr.subarray::<2>(1), &[2, 3]);
    /// ```
    fn subarray<const S: usize>(&self, index: usize) -> &[T; S];

    /// Checked version of `subarray`. Returns `None` if bounds are exceeded.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// assert_eq!(arr.subarray_checked::<2>(1), Some(&[2, 3]));
    /// assert_eq!(arr.subarray_checked::<2>(2), None);
    /// ```
    fn subarray_checked<const S: usize>(&self, index: usize) -> Option<&[T; S]>;

    /// Unchecked version of `subarray`. Undefined behavior if bounds are exceeded.
    ///
    /// # Safety
    ///
    /// Caller must ensure that `index + S <= self.len()`.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3, 4];
    /// unsafe {
    ///     assert_eq!(arr.subarray_unchecked::<2>(1), &[2, 3]);
    /// }
    /// ```
    unsafe fn subarray_unchecked<const S: usize>(&self, index: usize) -> &[T; S];

    /// Returns an iterator over references to the elements.
    ///
    /// # Examples
    ///
    /// ```
    /// use ps_util::Array;
    /// let arr = [1, 2, 3];
    /// let values: Vec<_> = arr.values().collect();
    /// assert_eq!(values, vec![&1, &2, &3]);
    /// ```
    fn values<'a>(&'a self) -> impl Iterator<Item = &'a T>
    where
        T: 'a;
}

impl<A, T> Array<T> for A
where
    A: AsRef<[T]>,
{
    fn at(&self, index: usize) -> Option<&T> {
        self.as_ref().get(index)
    }

    fn concat(&self, other: impl AsRef<[T]>) -> Vec<T>
    where
        T: Clone,
    {
        let lhs = self.as_ref();
        let rhs = other.as_ref();

        let mut concatenated = Vec::with_capacity(lhs.len() + rhs.len());

        concatenated.extend_from_slice(lhs);
        concatenated.extend_from_slice(rhs);

        concatenated
    }

    fn entries<'a>(&'a self) -> impl Iterator<Item = (usize, &'a T)>
    where
        T: 'a,
    {
        self.as_ref().iter().enumerate()
    }

    fn every(&self, predicate: impl FnMut(&T) -> bool) -> bool {
        self.as_ref().iter().all(predicate)
    }

    fn every_equal_in_sorted_by(&self, mut comparator: impl FnMut(&T) -> Ordering) -> bool {
        let slice = self.as_ref();

        match slice {
            [] => true,
            [only] => comparator(only).is_eq(),
            [first, .., last] => comparator(first).is_eq() && comparator(last).is_eq(),
        }
    }

    fn filter(&self, mut predicate: impl FnMut(&T) -> bool) -> Vec<T>
    where
        T: Clone,
    {
        self.as_ref()
            .iter()
            .filter(|item| predicate(item))
            .cloned()
            .collect()
    }

    fn filter_equal_in_sorted_by(&self, mut comparator: impl FnMut(&T) -> Ordering) -> Vec<T>
    where
        T: Clone,
    {
        let slice = self.as_ref();

        let Some((start, end)) = equal_range_by(slice, &mut comparator) else {
            return Vec::new();
        };

        slice[start..end].to_vec()
    }

    fn find(&self, mut predicate: impl FnMut(&T) -> bool) -> Option<&T> {
        Iterator::find(&mut self.as_ref().iter(), |item| predicate(item))
    }

    fn find_equal_in_sorted_by(&self, mut comparator: impl FnMut(&T) -> Ordering) -> Option<&T> {
        let slice = self.as_ref();

        equal_index_by(slice, &mut comparator).map(|idx| &slice[idx])
    }

    fn find_index(&self, predicate: impl FnMut(&T) -> bool) -> Option<usize> {
        self.as_ref().iter().position(predicate)
    }

    fn find_index_equal_in_sorted_by(
        &self,
        mut comparator: impl FnMut(&T) -> Ordering,
    ) -> Option<usize> {
        equal_index_by(self.as_ref(), &mut comparator)
    }

    fn find_last(&self, mut predicate: impl FnMut(&T) -> bool) -> Option<&T> {
        self.as_ref().iter().rfind(|item| predicate(item))
    }

    fn find_last_equal_in_sorted_by(
        &self,
        mut comparator: impl FnMut(&T) -> Ordering,
    ) -> Option<&T> {
        let slice = self.as_ref();

        equal_last_index_by(slice, &mut comparator).map(|idx| &slice[idx])
    }

    fn find_last_index(&self, predicate: impl FnMut(&T) -> bool) -> Option<usize> {
        self.as_ref().iter().rposition(predicate)
    }

    fn find_last_index_equal_in_sorted_by(
        &self,
        mut comparator: impl FnMut(&T) -> Ordering,
    ) -> Option<usize> {
        equal_last_index_by(self.as_ref(), &mut comparator)
    }

    fn flat(&self) -> Vec<<T>::Item>
    where
        T: Clone + IntoIterator,
    {
        self.as_ref().iter().cloned().flatten().collect()
    }

    fn flat_map<O, I>(&self, mapper: impl FnMut(&T) -> I) -> Vec<O>
    where
        I: IntoIterator<Item = O>,
    {
        self.as_ref().iter().flat_map(mapper).collect()
    }

    fn for_each(&self, cb: impl FnMut(&T)) {
        self.as_ref().iter().for_each(cb);
    }

    fn includes(&self, value: &T) -> bool
    where
        T: PartialEq,
    {
        self.as_ref().contains(value)
    }

    fn index_of(&self, value: &T) -> Option<usize>
    where
        T: PartialEq,
    {
        self.as_ref().iter().position(|x| x == value)
    }

    fn is_empty(&self) -> bool {
        self.as_ref().is_empty()
    }

    fn join(&self, separator: &str) -> Result<String, std::fmt::Error>
    where
        T: std::fmt::Display,
    {
        let mut a = String::new();
        let mut iterator = self.as_ref().iter();

        if let Some(first) = iterator.next() {
            write!(&mut a, "{first}")?;

            for item in iterator {
                write!(&mut a, "{separator}{item}")?;
            }
        }

        Ok(a)
    }

    fn keys(&self) -> impl Iterator<Item = usize> {
        0..self.as_ref().len()
    }

    fn last_index_of(&self, value: &T) -> Option<usize>
    where
        T: PartialEq,
    {
        self.find_last_index(|item| item == value)
    }

    fn len(&self) -> usize {
        self.as_ref().len()
    }

    fn map<O>(&self, mapper: impl FnMut(&T) -> O) -> Vec<O> {
        self.as_ref().iter().map(mapper).collect()
    }

    fn reduce<O>(&self, reducer: impl FnMut(O, &T) -> O, initial: O) -> O {
        self.as_ref().iter().fold(initial, reducer)
    }

    fn reduce_right<O>(&self, reducer: impl FnMut(O, &T) -> O, initial: O) -> O {
        self.as_ref().iter().rev().fold(initial, reducer)
    }

    fn slice(&self, start: usize, end: Option<usize>) -> &[T] {
        let full = self.as_ref();
        let len = full.len();
        let start = usize::min(start, len);
        let end = end.unwrap_or(len).clamp(start, len);

        &full[start..end]
    }

    fn some(&self, predicate: impl FnMut(&T) -> bool) -> bool {
        self.as_ref().iter().any(predicate)
    }

    fn some_equal_in_sorted_by(&self, mut comparator: impl FnMut(&T) -> Ordering) -> bool {
        equal_index_by(self.as_ref(), &mut comparator).is_some()
    }

    fn none(&self, predicate: impl FnMut(&T) -> bool) -> bool {
        !self.as_ref().iter().any(predicate)
    }

    fn none_equal_in_sorted_by(&self, mut comparator: impl FnMut(&T) -> Ordering) -> bool {
        equal_index_by(self.as_ref(), &mut comparator).is_none()
    }

    fn subarray<const S: usize>(&self, index: usize) -> &[T; S] {
        subarray(self.as_ref(), index)
    }

    fn subarray_checked<const S: usize>(&self, index: usize) -> Option<&[T; S]> {
        subarray_checked(self.as_ref(), index)
    }

    unsafe fn subarray_unchecked<const S: usize>(&self, index: usize) -> &[T; S] {
        subarray_unchecked(self.as_ref(), index)
    }

    fn values<'a>(&'a self) -> impl Iterator<Item = &'a T>
    where
        T: 'a,
    {
        self.as_ref().iter()
    }
}

fn lower_bound_by<T, F>(slice: &[T], comparator: &mut F) -> usize
where
    F: FnMut(&T) -> Ordering,
{
    slice.partition_point(|item| comparator(item).is_lt())
}

fn equal_index_by<T, F>(slice: &[T], comparator: &mut F) -> Option<usize>
where
    F: FnMut(&T) -> Ordering,
{
    let idx = lower_bound_by(slice, comparator);
    (idx < slice.len() && comparator(&slice[idx]).is_eq()).then_some(idx)
}

fn upper_bound_by<T, F>(slice: &[T], comparator: &mut F) -> usize
where
    F: FnMut(&T) -> Ordering,
{
    slice.partition_point(|item| !comparator(item).is_gt())
}

fn equal_last_index_by<T, F>(slice: &[T], comparator: &mut F) -> Option<usize>
where
    F: FnMut(&T) -> Ordering,
{
    let end = upper_bound_by(slice, comparator);
    (end > 0 && comparator(&slice[end - 1]).is_eq()).then(|| end - 1)
}

fn equal_range_by<T, F>(slice: &[T], comparator: &mut F) -> Option<(usize, usize)>
where
    F: FnMut(&T) -> Ordering,
{
    let start = equal_index_by(slice, comparator)?;
    let end = start + upper_bound_by(&slice[start..], comparator);

    (start < end).then_some((start, end))
}