summaryrefslogtreecommitdiffstats
path: root/src/ops/and.rs
blob: 074446e47dde723bf3417207cb0f2e2a12c60820 (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
use filter::Filter;

#[must_use = "filters are lazy and do nothing unless consumed"]
#[derive(Clone)]
pub struct And<T, U> {
    a: T,
    b: U
}

impl<T, U> And<T, U> {

    pub fn new(a: T, b: U) -> And<T, U> {
        And { a: a, b: b }
    }

}

impl<I, T: Filter<I>, U: Filter<I>> Filter<I> for And<T, U> {

    fn filter(&self, e: &I) -> bool {
        self.a.filter(e) && self.b.filter(e)
    }

}