commit | fc97edc9e5a53d6c7f12995423a7d05e543ac259 | [log] [tgz] |
---|---|---|
author | Inna Palant <[email protected]> | Wed Dec 13 13:41:17 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Dec 13 13:41:17 2023 +0000 |
tree | 9c83e78ea74d26fe63d5098dc969275517eeaa93 | |
parent | 1b60f813442a22a324c7e43628f2da2c42adda9e [diff] | |
parent | 8ab7cf865280930298f1c451abdaa71b1240adda [diff] |
Merge remote-tracking branch 'origin/upstream' am: 9a16fc03db am: 27ab338e04 am: 8ab7cf8652 Original change: undetermined Change-Id: Ie8fbb3b2216c08b6cf7215ce44511d1539b9759a Signed-off-by: Automerger Merge Worker <[email protected]>
An implementation of boolean-valued predicate functions in Rust.
First, add this to your Cargo.toml
:
[dependencies] predicates = "3.0.4"
Next, add this to your crate:
extern crate predicates; use predicates::prelude::*;
For more information on using predicates, look at the documentation
predicates-rs
is distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE, and LICENSE-MIT for details.
Big thanks to futures-rs, whose slick API design informed a lot of decisions made on the API design of this library.