commit | 86debf1f98d7320442eca04380f0c26def0ad208 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Jul 24 17:53:23 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Jul 24 17:53:23 2024 +0000 |
tree | 20c7f5105a0083a998bf1466ebad894220f30160 | |
parent | c10e77266511b98314bc493226b365635a73f2c8 [diff] | |
parent | d0ec45c3eba9f884d92d86714cc884f78835f7bb [diff] |
Snap for 12134224 from d0ec45c3eba9f884d92d86714cc884f78835f7bb to simpleperf-release Change-Id: If496258dbbe5eee5436e64b9cc89acdcfa501834
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.