summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_data_structures/src/sso/either_iter.rs
blob: 131eeef4582de6fc35df95d90470cf9881bf48e1 (plain)
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
use std::fmt;
use std::iter::ExactSizeIterator;
use std::iter::FusedIterator;
use std::iter::Iterator;

/// Iterator which may contain instance of
/// one of two specific implementations.
///
/// Note: For most methods providing custom
///       implementation may marginally
///       improve performance by avoiding
///       doing Left/Right match on every step
///       and doing it only once instead.
#[derive(Clone)]
pub enum EitherIter<L, R> {
    Left(L),
    Right(R),
}

impl<L, R> Iterator for EitherIter<L, R>
where
    L: Iterator,
    R: Iterator<Item = L::Item>,
{
    type Item = L::Item;

    fn next(&mut self) -> Option<Self::Item> {
        match self {
            EitherIter::Left(l) => l.next(),
            EitherIter::Right(r) => r.next(),
        }
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        match self {
            EitherIter::Left(l) => l.size_hint(),
            EitherIter::Right(r) => r.size_hint(),
        }
    }
}

impl<L, R> ExactSizeIterator for EitherIter<L, R>
where
    L: ExactSizeIterator,
    R: ExactSizeIterator,
    EitherIter<L, R>: Iterator,
{
    fn len(&self) -> usize {
        match self {
            EitherIter::Left(l) => l.len(),
            EitherIter::Right(r) => r.len(),
        }
    }
}

impl<L, R> FusedIterator for EitherIter<L, R>
where
    L: FusedIterator,
    R: FusedIterator,
    EitherIter<L, R>: Iterator,
{
}

impl<L, R> fmt::Debug for EitherIter<L, R>
where
    L: fmt::Debug,
    R: fmt::Debug,
{
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            EitherIter::Left(l) => l.fmt(f),
            EitherIter::Right(r) => r.fmt(f),
        }
    }
}