Revision control
Copy as Markdown
Other Tools
# predicates-rs
> An implementation of **boolean-valued predicate functions** in Rust.
[](https://crates.io/crates/predicates)
## Usage
First, add this to your `Cargo.toml`:
```toml
[dependencies]
predicates = "3.1.4"
```
Next, add this to your crate:
```rust
extern crate predicates;
use predicates::prelude::*;
```
For more information on using predicates, look at the
## License
Licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or <https://www.apache.org/licenses/LICENSE-2.0>)
at your option.
## Credits
slick API design informed a lot of decisions made on the API design of this
library.