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
/// The <code>impl [LendingIterator]</code> returned by [`.filter()`][
/// LendingIterator::filter()].
pub
struct Filter<I, F>
where
    I : LendingIterator,
    F : FnMut(&'_ Item<'_, I>) -> bool,
{
    pub(in crate)
    iter: I,

    pub(in crate)
    should_yield: F,
}

#[gat]
impl<I, F> LendingIterator
    for Filter<I, F>
where
    I : LendingIterator,
    F : FnMut(&'_ Item<'_, I>) -> bool,
{
    type Item<'next>
    where
        Self : 'next,
    =
        Item<'next, I>
    ;

    fn next (
        self: &'_ mut Filter<I, F>,
    ) -> Option<Item<'_, I>>
    {
        self.iter.find(&mut self.should_yield)
    }
}