fluent-comparisons 1.0.4

Boost readability by writing multicomparison expressions like `if any_of!({a,b,c}>=5) {...}` while keeping the benefits of hand-written code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::assertions_on_constants)]

#[macro_use]
pub mod helper;

mod all_of;
mod all_of_with_map;
mod any_of;
mod any_of_with_map;
mod macro_expansion;
mod none_of;
mod none_of_with_map;
mod theorems;