summaryrefslogtreecommitdiffstats
path: root/src/failable/ops/or.rs
blob: 9cebc7556b82bb55699827879280b26df59989b3 (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
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//

//! OR implementation.
//!
//! Will be automatically included when including `filter::Filter`, so importing this module
//! shouldn't be necessary.
//!

use failable::filter::FailableFilter;

#[must_use = "filters are lazy and do nothing unless consumed"]
#[derive(Clone)]
pub struct FailableOr<T, U>(T, U);

impl<T, U> FailableOr<T, U> {

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

}

impl<N, T, U, E> FailableFilter<N> for FailableOr<T, U>
    where T: FailableFilter<N, Error = E>,
          U: FailableFilter<N, Error = E>
{
    type Error = E;

    fn filter(&self, e: &N) -> Result<bool, Self::Error> {
        Ok(self.0.filter(e)? || self.1.filter(e)?)
    }
}