| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| examples/ | 04-Jul-2025 | - | 14 | 11 | ||
| patches/ | 04-Jul-2025 | - | 118 | 108 | ||
| src/ | 04-Jul-2025 | - | 3,701 | 2,240 | ||
| .android-checksum.json | D | 04-Jul-2025 | 3.1 KiB | 1 | 1 | |
| .cargo-checksum.json | D | 04-Jul-2025 | 2.6 KiB | 1 | 1 | |
| Android.bp | D | 04-Jul-2025 | 1.5 KiB | 66 | 61 | |
| Cargo.lock | D | 04-Jul-2025 | 3.2 KiB | 125 | 109 | |
| Cargo.toml | D | 04-Jul-2025 | 5 KiB | 222 | 199 | |
| LICENSE | D | 04-Jul-2025 | 11.1 KiB | 202 | 169 | |
| LICENSE-APACHE | D | 04-Jul-2025 | 11.1 KiB | 202 | 169 | |
| METADATA | D | 04-Jul-2025 | 404 | 18 | 17 | |
| MODULE_LICENSE_APACHE2 | D | 04-Jul-2025 | 0 | |||
| README.md | D | 04-Jul-2025 | 1.2 KiB | 45 | 28 | |
| TEST_MAPPING | D | 04-Jul-2025 | 78 | 8 | 7 | |
| cargo_embargo.json | D | 04-Jul-2025 | 115 | 10 | 9 |
README.md
1# predicates-rs 2 3> An implementation of **boolean-valued predicate functions** in Rust. 4 5[](https://docs.rs/predicates) 6 7[](https://crates.io/crates/predicates) 8 9[Changelog](https://github.com/assert-rs/predicates-rs/blob/master/CHANGELOG.md) 10 11 12## Usage 13 14First, add this to your `Cargo.toml`: 15 16```toml 17[dependencies] 18predicates = "3.1.3" 19``` 20 21Next, add this to your crate: 22 23```rust 24extern crate predicates; 25 26use predicates::prelude::*; 27``` 28 29For more information on using predicates, look at the 30[documentation](https://docs.rs/predicates) 31 32## License 33 34`predicates-rs` is distributed under the terms of both the MIT license and the 35Apache License (Version 2.0). 36 37* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <http://www.apache.org/licenses/LICENSE-2.0>) 38* MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>) 39 40## Credits 41 42Big thanks to [futures-rs](https://github.com/alexcrichton/futures-rs), whose 43slick API design informed a lot of decisions made on the API design of this 44library. 45