common-range-tools 1.1.0

Library to find Common Range Intersections
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
use crate::{
    AnyIncDecCpCmp, CpCmp, DefaultValues, GetBeginEnd, GetBeginEndOption, IncDecCpCmp, MrsP,
    NumberIncDecCpCmp, RangeRelation, RiFactory, first_range_begin_end, last_range_begin_end,
    next_range_begin_end, previous_range_begin_end, range_bounds_to_values, range_relation,
};

use std::marker::PhantomData;
use std::mem;
use std::ops::RangeInclusive;
use std::ops::{Add, RangeBounds, Sub};

/// Core of the consolidation code.
pub mod consolidate;

/// The core [Iterator]+[DoubleEndedIterator] for finding range intersections.
pub struct OverlapIter<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, F: GetBeginEndOption<T, R>> {
    src: Vec<R>,
    step: V,
    cmp: C,
    next: Option<R>,
    back: Option<R>,
    last_next: Option<R>,
    last_back: Option<R>,
    factory: F,
    _marker: PhantomData<T>,
}

impl<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, F: GetBeginEndOption<T, R>>
    OverlapIter<T, V, C, R, F>
{
    /// Creates a new [OverlapIter] from the slice of R.
    pub fn new(src: Vec<R>, step: V, cmp: C, factory: F) -> Self {
        let mut res = Self {
            src,
            step,
            cmp,
            next: None,
            back: None,
            last_next: None,
            last_back: None,
            factory,
            _marker: PhantomData,
        };
        res.reset();
        return res;
    }

    /// Resets this instance to it's starting state.
    pub fn reset(&mut self) {
        let src = &self.src;
        let step = &self.step;
        let cmp = &self.cmp;
        let next = self.factory.factory(first_range_begin_end(src, step, cmp));
        let back = self.factory.factory(last_range_begin_end(src, step, cmp));
        self.next = next;
        self.back = back;
        self.last_back = None;
        self.last_next = None;
    }

    /// Tries to copy the src ref range via the internals.
    /// Returns None if it fails.
    pub fn copy_range<U: GetBeginEnd<T>>(&self, src: &U) -> Option<R> {
        let a = self.cmp.cp(src.get_begin());
        let z = self.cmp.cp(src.get_end());
        return self.factory.factory(Some((a, z)));
    }

    /// Returns a tuple of Option refs to the internal next and last_next ranges.
    pub fn ln(&self) -> (Option<&R>, Option<&R>) {
        let a;
        let b;
        match &self.next {
            Some(n) => a = Some(n),
            _ => a = None,
        }
        match &self.last_next {
            Some(n) => b = Some(n),
            _ => b = None,
        }

        return (a, b);
    }

    /// Returns a tuple of Option refs to the internal back and last_back ranges.
    pub fn lb(&self) -> (Option<&R>, Option<&R>) {
        let a;
        let b;
        match &self.back {
            Some(n) => a = Some(n),
            _ => a = None,
        }
        match &self.last_back {
            Some(n) => b = Some(n),
            _ => b = None,
        }

        return (a, b);
    }

    /// After calling [OverlapIter::update_column], call this method in place of [OverlapIter::next] to return the properly updated next value.
    /// Calling this method resets the curent state of [OverlapIter::next_back].
    pub fn recompute_next(&mut self) -> Option<R> {
        self.last_back = None;
        self.back = self
            .factory
            .factory(last_range_begin_end(&self.src, &self.step, &self.cmp));

        let last_next = mem::replace(&mut self.last_next, None);
        match last_next {
            Some(x) => self.next = self.try_next(&Some(x)),
            _ => return None,
        }

        return self.next();
    }

    /// After calling [OverlapIter::update_column], call this method in place of [OverlapIter::next_back] to return the properly updated back value.
    /// Calling this method resets the curent state of [OverlapIter::next].
    pub fn recompute_back(&mut self) -> Option<R> {
        self.last_next = None;
        self.next = self
            .factory
            .factory(first_range_begin_end(&self.src, &self.step, &self.cmp));
        let last_back = mem::replace(&mut self.last_back, None);
        match last_back {
            Some(x) => self.back = self.try_next_back(&Some(x)),
            _ => return None,
        }

        return self.next_back();
    }

    /// Updates the internal column to the new [GetBeginEnd] instance.
    /// Returns [Result::Err] if the range is invalid or if the index point does not exist.
    ///
    /// After calling this method the next call to  [OverlapIter::next] or [OverlapIter::next_back] will not function correctly.
    /// First call the respective [OverlapIter::recompute_next] or [OverlapIter::recompute_back],
    /// then proceed to call either [OverlapIter::next] or [OverlapIter::next_back] normally.
    pub fn update_column(&mut self, idx: usize, range: R) -> Result<(), &'static str> {
        if let Some(col) = self.src.get_mut(idx) {
            if self.cmp.is_invalid_set(range.get_begin(), range.get_end()) {
                return Err("Invalid Range");
            }
            *col = range;
            return Ok(());
        }
        return Err("No such Column");
    }

    /// Genrates a new next based on the src passed in.
    pub fn try_next(&self, src: &Option<R>) -> Option<R> {
        let mut next = None;
        if let Some(n) = src {
            match &self.back {
                Some(b) => match range_relation(n, b, &self.cmp) {
                    RangeRelation::Overlap(_) => {
                        if let Some(begin) = self.cmp.inc(n.get_end(), &self.step) {
                            next = self.factory.factory(next_range_begin_end(
                                &begin,
                                &[
                                    MrsP {
                                        r: b,
                                        _t: PhantomData,
                                    },
                                    MrsP {
                                        r: n,
                                        _t: PhantomData,
                                    },
                                ],
                                &self.step,
                                &self.cmp,
                            ));
                        }
                    }
                    RangeRelation::Before(_) => {
                        if let Some(begin) = self.cmp.inc(n.get_end(), &self.step) {
                            next = self.factory.factory(next_range_begin_end(
                                &begin, &self.src, &self.step, &self.cmp,
                            ));
                        }
                    }
                    _ => return None,
                },
                None => (),
            }
        }
        return next;
    }

    /// Genrates a new back based on the src passed in.
    pub fn try_next_back(&self, src: &Option<R>) -> Option<R> {
        let mut back = None;
        if let Some(b) = src
            && let Some(n) = &self.next
        {
            match range_relation(b, n, &self.cmp) {
                RangeRelation::Overlap(_) => {
                    if let Some(end) = self.cmp.dec(b.get_begin(), &self.step) {
                        back = self.factory.factory(previous_range_begin_end(
                            &end,
                            &[
                                MrsP {
                                    r: n,
                                    _t: PhantomData,
                                },
                                MrsP {
                                    r: b,
                                    _t: PhantomData,
                                },
                            ],
                            &self.step,
                            &self.cmp,
                        ));
                    }
                }
                RangeRelation::After(_) => {
                    if let Some(end) = self.cmp.dec(b.get_begin(), &self.step) {
                        back = self.factory.factory(previous_range_begin_end(
                            &end, &self.src, &self.step, &self.cmp,
                        ));
                    }
                }
                _ => return None,
            }
        }
        return back;
    }

    pub fn next_overlaps<'r, 'a>(&mut self) -> Option<(R, OverlapsIter<'r, 'a, T, C, R, R>)> {
        match self.next() {
            Some(next) => {
                if let Some(ln) = &self.last_next {
                    let i: OverlapsIter<'_, '_, T, C, R, R> =
                        OverlapsIter::new(&self.cmp, ln, &self.src);
                    return Some((next, unsafe { mem::transmute(i) }));
                } else {
                    return None;
                }
            }
            None => None,
        }
    }

    pub fn next_back_overlaps<'r, 'a>(&mut self) -> Option<(R, OverlapsIter<'r, 'a, T, C, R, R>)> {
        match self.next_back() {
            Some(next) => {
                if let Some(lb) = &self.last_back {
                    let i: OverlapsIter<'_, '_, T, C, R, R> =
                        OverlapsIter::new(&self.cmp, lb, &self.src);
                    return Some((next, unsafe { mem::transmute(i) }));
                } else {
                    return None;
                }
            }
            None => None,
        }
    }
    /// Converts self to an instance of [OverlapIterWithOverlaps].
    pub fn into_iter_overlaps<'r, 'a, S: GetBeginEnd<T> + 'r + 'a>(
        self,
    ) -> OverlapIterWithOverlaps<'r, 'a, T, V, C, R, S, F> {
        return OverlapIterWithOverlaps::new(self);
    }
}

impl<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, F: GetBeginEndOption<T, R>> Iterator
    for OverlapIter<T, V, C, R, F>
{
    type Item = R;

    /// This is part of a [DoubleEndedIterator] calls to [OverlapIter::next] impact calls to [OverlapIter::next_back].
    /// ## Big O Notation
    /// Each call to self.next() is a time complexity of O(n*3)
    fn next(&mut self) -> Option<Self::Item> {
        let next = self.try_next(&self.next);
        if let Some(next) = &self.next {
            self.last_next = self.copy_range(next);
        }
        return mem::replace(&mut self.next, next);
    }
}

impl<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, F: GetBeginEndOption<T, R>> DoubleEndedIterator
    for OverlapIter<T, V, C, R, F>
{
    /// This is part of a [DoubleEndedIterator] calls to [OverlapIter::next_back] impact calls to [OverlapIter::next].
    /// ## Big O Notation
    /// Each call to self.next_back() is a time complexity of O(n*3)
    fn next_back(&mut self) -> Option<Self::Item> {
        let back = self.try_next_back(&self.back);
        if let Some(back) = &self.back {
            self.last_back = self.copy_range(back);
        }
        return mem::replace(&mut self.back, back);
    }
}

/// This acts as a general [OverlapIter] factory.
///
/// *The self.add_* methods*:
///
/// The various add_* methods return the index of the column that was added and the generated instance of [GetBeginEnd].
/// The index can be used to update that column during the iteration process
/// of the returned [OverlapIter] object instance.
/// See [OverlapIter::update_column] for more details.
pub struct Intersector<T, V, C: IncDecCpCmp<T, V>, R, F> {
    list: Vec<R>,
    step: V,
    rebound: V,
    cmp: C,
    factory: F,
    _r: PhantomData<(T, R)>,
}

impl<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, B: GetBeginEndOption<T, R>>
    Intersector<T, V, C, R, B>
{
    /// Constructs a new instance of [Intersector].
    pub fn new(list: Vec<R>, step: V, rebound: V, cmp: C, factory: B) -> Self {
        Self {
            list,
            step,
            rebound,
            cmp,
            factory,
            _r: PhantomData,
        }
    }

    /// Converts self to an instance of [OverlapIterWithOverlaps].
    pub fn into_iter_overlaps<'r, 'a, S: GetBeginEnd<T> + 'r + 'a>(
        self,
    ) -> OverlapIterWithOverlaps<'r, 'a, T, V, C, R, S, B> {
        return OverlapIterWithOverlaps::new(self.into_iter());
    }
}

impl<T, V> Intersector<T, V, AnyIncDecCpCmp<T>, RangeInclusive<T>, RiFactory<T>>
where
    T: PartialOrd + Copy + Add<V, Output = T> + Sub<V, Output = T>,
    V: Copy,
{
    /// Creates a new [Intersector] instance that works with any data type.
    pub fn any(
        step: V,
        rebound: V,
        min: T,
        max: T,
    ) -> Intersector<T, V, AnyIncDecCpCmp<T>, RangeInclusive<T>, RiFactory<T>> {
        Self {
            list: Vec::new(),
            step,
            rebound,
            cmp: AnyIncDecCpCmp::new(min, max),
            factory: RiFactory::new(),
            _r: PhantomData,
        }
    }

    /// Creates a new [DoubleEndedIterator] of [OverlapIter].
    pub fn any_from(
        step: V,
        rebound: V,
        min: T,
        max: T,
        src: &[impl RangeBounds<T>],
    ) -> OverlapIter<T, V, AnyIncDecCpCmp<T>, RangeInclusive<T>, RiFactory<T>> {
        let mut i = Self::any(step, rebound, min, max);
        for r in src {
            i.add_range(r);
        }
        return i.into_iter();
    }

    /// Creates a new [DoubleEndedIterator] of [OverlapsIter].
    pub fn any_from_ol<'r, 'a>(
        step: V,
        rebound: V,
        min: T,
        max: T,
        src: &[impl RangeBounds<T>],
    ) -> OverlapIterWithOverlaps<
        'r,
        'a,
        T,
        V,
        AnyIncDecCpCmp<T>,
        RangeInclusive<T>,
        RangeInclusive<T>,
        RiFactory<T>,
    > {
        let mut i = Self::any(step, rebound, min, max);
        for r in src {
            i.add_range(r);
        }
        return i.into_iter_overlaps();
    }
}

impl<T> Intersector<T, T, NumberIncDecCpCmp<T>, RangeInclusive<T>, RiFactory<T>>
where
    T: PartialOrd + Copy + Add<T, Output = T> + Sub<T, Output = T>,
    NumberIncDecCpCmp<T>: DefaultValues<T, T>,
{
    /// Returns a new instance of [Intersector] configured to work with any primitive number type using the default values.
    pub fn num_defaults() -> Self {
        let cmp = NumberIncDecCpCmp::defaults();
        return Self {
            list: Vec::new(),
            step: cmp.default_step(),
            rebound: cmp.default_rebound(),
            cmp,
            factory: RiFactory::new(),
            _r: PhantomData,
        };
    }

    /// Returns a new instance of [Intersector] configured to work with numbers based on the arguments passed in.
    pub fn num(step: T, rebound: T, min: T, max: T) -> Self {
        return Self {
            list: Vec::new(),
            step,
            rebound,
            cmp: NumberIncDecCpCmp::new(min, max),
            factory: RiFactory::new(),
            _r: PhantomData,
        };
    }

    /// Returns a new instance of [Intersector] configured to work with numbers.
    /// The nteral step and rebound values are set to sr.
    pub fn num_sr(sr: T) -> Self {
        return Self {
            list: Vec::new(),
            step: sr,
            rebound: sr,
            cmp: NumberIncDecCpCmp::defaults(),
            factory: RiFactory::new(),
            _r: PhantomData,
        };
    }

    /// Takes any list of range of numbers and converts them to an instance of [OverlapIter].
    pub fn num_from(
        src: &[impl RangeBounds<T>],
    ) -> OverlapIter<T, T, NumberIncDecCpCmp<T>, RangeInclusive<T>, RiFactory<T>> {
        let mut i = Self::num_defaults();
        for r in src {
            i.add_range(r);
        }
        return i.into_iter();
    }

    /// Creates a new [DoubleEndedIterator] of [OverlapIter].
    pub fn num_from_ol<'r, 'a>(
        src: &[impl RangeBounds<T>],
    ) -> OverlapIterWithOverlaps<
        'r,
        'a,
        T,
        T,
        NumberIncDecCpCmp<T>,
        RangeInclusive<T>,
        RangeInclusive<T>,
        RiFactory<T>,
    > {
        let mut i = Self::num_defaults();
        for r in src {
            i.add_range(r);
        }
        return i.into_iter_overlaps();
    }

    /// Takes any list of range of numbers and converts them to an instance of [OverlapIter], with the step and rebound value set to sr.
    pub fn num_sr_from(
        sr: T,
        src: &[impl RangeBounds<T>],
    ) -> OverlapIter<T, T, NumberIncDecCpCmp<T>, RangeInclusive<T>, RiFactory<T>> {
        let mut i = Self::num_sr(sr);
        for r in src {
            i.add_range(r);
        }
        return i.into_iter();
    }
    /// Creates a new [DoubleEndedIterator] of [OverlapsIter].
    pub fn num_from_sr_ol<'r, 'a>(
        sr: T,
        src: &[impl RangeBounds<T>],
    ) -> OverlapIterWithOverlaps<
        'r,
        'a,
        T,
        T,
        NumberIncDecCpCmp<T>,
        RangeInclusive<T>,
        RangeInclusive<T>,
        RiFactory<T>,
    > {
        let mut i = Self::num_sr(sr);
        for r in src {
            i.add_range(r);
        }
        return i.into_iter_overlaps();
    }
}

macro_rules! impl_intersector_num_core{
    ($($t:ty),*) => {
        $(
            impl Intersector<$t, $t, NumberIncDecCpCmp<$t>, RangeInclusive<$t>,RiFactory<$t>>
            where NumberIncDecCpCmp<$t>: DefaultValues<$t,$t> {}

        )*
    };
}
impl_intersector_num_core!(
    i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize, f32, f64
);

impl<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, F: GetBeginEndOption<T, R>>
    Intersector<T, V, C, R, F>
{
    /// Tries to add an instance of [GetBeginEnd] to this instance returns None if src is invalid.
    pub fn add_raw_range(&mut self, src: R) -> Option<(usize, &R)> {
        if self.cmp.is_invalid_set(&src.get_begin(), &src.get_end()) {
            return None;
        }
        self.list.push(src);
        let id = self.list.len() - 1;
        return Some((id, &self.list[id]));
    }

    /// Tries to create and add a valid internal range from the tuple of refs.
    pub fn add_from_tuple_ref(&mut self, src: (&T, &T)) -> Option<(usize, &R)> {
        let a = self.cmp.cp(src.0);
        let z = self.cmp.cp(src.1);
        return self.add_from_tuple((a, z));
    }
    /// Tries to add a tuple to the instance, returns None if it fails.
    pub fn add_from_tuple(&mut self, src: (T, T)) -> Option<(usize, &R)> {
        match self.factory.factory(Some(src)) {
            Some(mrs) => return self.add_raw_range(mrs),
            None => None,
        }
    }

    /// This is really a wrapper for [crate::range_bounds_to_values].
    pub fn rebound(&self, r: &impl RangeBounds<T>) -> Option<(T, T)> {
        return range_bounds_to_values(r, self.get_rebound(), self.get_cmp());
    }

    /// Tries to convert a given [RangeBounds] instance to the internal range type.
    /// Returns None if the conversion process fails or the range produced is invalid.
    pub fn add_range(&mut self, r: &impl RangeBounds<T>) -> Option<(usize, &R)> {
        match self.rebound(r) {
            Some(src) => self.add_tuple(src),
            None => None,
        }
    }

    /// Tries to convert a tuple to the internal range type and add it.
    /// Returns None if the conversion process fails or the resulting range is invalid.
    pub fn add_tuple(&mut self, src: (T, T)) -> Option<(usize, &R)> {
        return self.add_from_tuple(src);
    }

    /// Returns a mutable ref to the internal instance of [IncDecCpCmp].
    pub fn get_cmp_mut(&mut self) -> &mut C {
        return &mut self.cmp;
    }

    /// Returns a ref to the internal instance of [IncDecCpCmp].
    pub fn get_cmp(&self) -> &C {
        return &self.cmp;
    }

    /// Returns a ref to the internal rebound value.
    pub fn get_rebound(&self) -> &V {
        return &self.rebound;
    }

    /// Returns a ref to the internal step value.
    pub fn get_step(&self) -> &V {
        return &self.step;
    }

    /// Updates the internal rebound value.
    pub fn set_rebound(&mut self, rebound: V) {
        self.rebound = rebound;
    }

    /// Updates the internal step value.
    pub fn set_step(&mut self, step: V) {
        self.step = step;
    }
}

impl<T, V, C: IncDecCpCmp<T, V>, R: GetBeginEnd<T>, F: GetBeginEndOption<T, R>> IntoIterator
    for Intersector<T, V, C, R, F>
{
    type Item = R;

    type IntoIter = OverlapIter<T, V, C, R, F>;

    /// Converts the current instance of [Intersector] into an instance of [OverlapIter].
    fn into_iter(self) -> Self::IntoIter {
        return OverlapIter::new(self.list, self.step, self.cmp, self.factory);
    }
}

pub struct OverlapsIter<'r, 'a, T, C: CpCmp<T> + 'r, R: GetBeginEnd<T> + 'r, S: GetBeginEnd<T> + 'a>
{
    cmp: &'r C,
    pos: usize,
    range: &'r R,
    list: &'r Vec<S>,
    _t: PhantomData<(T, &'a S)>,
}

impl<'r, 'a, C: CpCmp<T>, T, R: GetBeginEnd<T>, S: GetBeginEnd<T> + 'a>
    OverlapsIter<'r, 'a, T, C, R, S>
{
    pub fn new(cmp: &'r C, range: &'r R, list: &'r Vec<S>) -> Self {
        return Self {
            cmp,
            pos: 0,
            range,
            list,
            _t: PhantomData,
        };
    }

    pub fn get_range(&self) -> &'r R {
        return self.range;
    }
}

impl<'r, 'a, C: CpCmp<T>, T, R: GetBeginEnd<T>, S: GetBeginEnd<T> + 'a> Iterator
    for OverlapsIter<'r, 'a, T, C, R, S>
{
    type Item = &'a S;
    fn next(&mut self) -> Option<Self::Item> {
        let range = self.pos..self.list.len();
        if range.is_empty() {
            return None;
        }
        let (a, b) = self.range.to_tuple_ref();
        for pos in range {
            let cmp = &self.list[pos];
            self.pos = pos + 1;
            let (c, d) = cmp.to_tuple_ref();
            if self.cmp.overlap(a, b, c, d) {
                return Some(unsafe { mem::transmute(cmp) });
            }
        }

        return None;
    }
}

pub struct OverlapIterWithOverlaps<
    'r,
    'a,
    T,
    V,
    C: IncDecCpCmp<T, V> + 'r,
    R: GetBeginEnd<T> + 'r,
    S: GetBeginEnd<T> + 'a,
    F: GetBeginEndOption<T, R>,
> {
    iter: OverlapIter<T, V, C, R, F>,
    _marker: PhantomData<(&'r C, &'r R, &'a S)>,
}

impl<
    'r,
    'a,
    T,
    V,
    C: IncDecCpCmp<T, V> + 'r,
    R: GetBeginEnd<T> + 'r,
    S: GetBeginEnd<T> + 'a,
    F: GetBeginEndOption<T, R>,
> OverlapIterWithOverlaps<'r, 'a, T, V, C, R, S, F>
{
    pub fn new(iter: OverlapIter<T, V, C, R, F>) -> Self {
        return Self {
            iter,
            _marker: PhantomData,
        };
    }
    pub fn reset(&mut self) {
        self.iter.reset();
    }
}

impl<'r, 'a, T, V, C: IncDecCpCmp<T, V>> Iterator
    for OverlapIterWithOverlaps<'r, 'a, T, V, C, RangeInclusive<T>, RangeInclusive<T>, RiFactory<T>>
{
    type Item = (
        RangeInclusive<T>,
        OverlapsIter<'r, 'a, T, C, RangeInclusive<T>, RangeInclusive<T>>,
    );
    fn next(&mut self) -> Option<Self::Item> {
        return self.iter.next_overlaps();
    }
}

impl<'r, 'a, T, V, C: IncDecCpCmp<T, V>> DoubleEndedIterator
    for OverlapIterWithOverlaps<'r, 'a, T, V, C, RangeInclusive<T>, RangeInclusive<T>, RiFactory<T>>
{
    fn next_back(&mut self) -> Option<Self::Item> {
        return self.iter.next_back_overlaps();
    }
}