Skip to content

Boolean-valued predicate functions in Rust

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

assert-rs/predicates-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
Feb 20, 2025
Dec 19, 2024
Sep 27, 2024
Dec 19, 2024
May 29, 2018
Apr 26, 2024
Mar 29, 2023
Oct 26, 2023
Dec 19, 2024
Dec 2, 2024
Dec 19, 2024
Dec 19, 2024
Aug 14, 2023
Mar 29, 2023
Dec 19, 2024
Dec 1, 2022
May 29, 2024
Nov 5, 2022

Repository files navigation

predicates-rs

An implementation of boolean-valued predicate functions in Rust.

Documentation License Crates.io

Changelog

Usage

First, add this to your Cargo.toml:

[dependencies]
predicates = "3.1.3"

Next, add this to your crate:

extern crate predicates;

use predicates::prelude::*;

For more information on using predicates, look at the documentation

License

predicates-rs is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

Credits

Big thanks to futures-rs, whose slick API design informed a lot of decisions made on the API design of this library.