commit | e0e3749a258809bf86d61dc557190b802f29f717 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Tue May 21 23:15:40 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Tue May 21 23:15:40 2024 +0000 |
tree | 20c7f5105a0083a998bf1466ebad894220f30160 | |
parent | c144c37bcb4242ae4a3e3fef4b86b1f78bb33c6f [diff] | |
parent | 81076caf4baca6178b1f1220f314296cfb5b2944 [diff] |
Snap for 11869550 from 81076caf4baca6178b1f1220f314296cfb5b2944 to 25D4-release Change-Id: I1621ab1545814b7d94675ae25a7e56d37909dd8e
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.