quantor 0.10.1

Declarative quantifiers for filtering, validation, and testing in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Common traits and functions for quick access.
//!
//! Includes all quantifiers and extension traits.
//! Import this to bring the full quantor interface into scope.

pub use crate::quantifiers::basic::*;
pub use crate::quantifiers::nested::*;
pub use crate::quantifiers::structured::*;
pub use crate::quantifiers::selection::*;

#[cfg(feature = "method-api")]
pub use crate::quantor_ext::QuantorExt;