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
use crate::{Consumer, Iterable, IterableMap, IterableSeq};

#[must_use = "iterable adaptors are lazy and do nothing unless consumed"]
#[derive(Debug, Clone)]
pub struct LazyFilter<I, F> {
    pub(crate) iterable: I,
    pub(crate) f: F,
}

impl<I, F> Iterable for LazyFilter<I, F>
where
    I: Iterable,
    F: Fn(&I::Item) -> bool,
{
    type C = I::C;
    type CC<U> = I::CC<U>;
}

impl<K, V, I, F> IterableMap<K, V> for LazyFilter<I, F>
where
    I: IterableMap<K, V>,
    F: Fn(&(K, V)) -> bool,
{
    type CCMap<X, Y> = I::CCMap<X, Y>;
}

impl<I, F> IterableSeq for LazyFilter<I, F>
where
    I: IterableSeq,
    F: Fn(&I::Item) -> bool,
{
}

impl<I, F> Consumer for LazyFilter<I, F>
where
    I: Consumer,
    F: Fn(&I::Item) -> bool,
{
    type Item = I::Item;
    type IntoIter = std::iter::Filter<I::IntoIter, F>;
    fn consume(self) -> Self::IntoIter {
        self.iterable.consume().filter(self.f)
    }
}

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

    #[test]
    fn smoke() {
        let v = vec![1, 2, 3];
        let res = collect(v.lazy_filter(|i| i > &1));
        assert_eq!(res, vec![2, 3]);
    }
}