5 releases (3 breaking)

Uses old Rust 2015

0.4.0 Oct 29, 2020
0.3.0 Apr 29, 2018
0.2.0 Oct 6, 2017
0.1.1 Oct 14, 2016
0.1.0 Aug 12, 2016

#1100 in Rust patterns

Download history 118/week @ 2024-07-19 162/week @ 2024-07-26 104/week @ 2024-08-02 159/week @ 2024-08-09 93/week @ 2024-08-16 145/week @ 2024-08-23 271/week @ 2024-08-30 164/week @ 2024-09-06 118/week @ 2024-09-13 170/week @ 2024-09-20 149/week @ 2024-09-27 145/week @ 2024-10-04 237/week @ 2024-10-11 223/week @ 2024-10-18 77/week @ 2024-10-25 283/week @ 2024-11-01

836 downloads per month
Used in 42 crates (17 directly)

MPL-2.0 license

55KB
884 lines

filters

A library crate to build predicates and filter.

Documentation.

Build Status GitHub tag Crates.io Crates.io Crates.io Crates.io

Examples explain it best:

use filters::filter::Filter;

let not_eq_to_one   = |&a: &usize| { a != 1 };
let not_eq_to_two   = |&a: &usize| { a != 2 };
let not_eq_to_three = |&a: &usize| { a != 3 };

let a = not_eq_to_one.and(not_eq_to_two).and(not_eq_to_three);

assert_eq!(a.filter(&21), true);

For more examples have a look at the tests in ./src/filters.rs.

License

filters - A crate to build predicates/filters with the builder pattern
Copyright (C) 2016 Matthias Beyer

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/.

For more information and the full license text, see the LICENSE file.

No runtime deps

Features