#comparison #expressions #fluent #multi #dry #development-tools

fluent-comparisons

Boost readability by writing multicomparison expressions like if any_of!({a,b,c}>=5) {...} while keeping the benefits of hand-written code

8 releases (2 stable)

1.0.1 Oct 17, 2023
0.3.1 Apr 26, 2021
0.2.1 Apr 19, 2021
0.1.1 Apr 18, 2021

#230 in Algorithms

MIT license

56KB
947 lines

fluent-comparisons

build tests lints maintenance-status

Fluent syntax for multi-comparisons.

This crate is for you if you have ever been annoyed at writing repetitive conditions like this

if x < a && y < a && z < a {
    // ... do something
}

and wished you could replace that code by something more expressive and less repetitive. Now you can rewrite the code as

use fluent_comparisons::all_of;
if all_of!({x,y,z} < a) {
    // ... do something
}

Examples

The crate provides the macros any_of, all_of and none_of to facilitate writing expressive multicomparisons. The arguments don't need to be numeric, but can be expressions of any type. Furthermore, a syntax for applying transformations and predicates to the set on the left hand side is provided.

// the following assertions hold
assert!(none_of!({1,2,3}>4));
assert!(any_of!({1,2,3}.map(|x|x%2)==0));
assert!(all_of!({2,5,7}.satisfy(is_prime_number)));

Brief Description and Key Advantages

In addition to providing an intuitive syntax, the macros compile to the same assembly as the handwritten code (check it on godbolt.org). A further benefit is lazy evaluation from left to right as seen in the next snippet:

use fluent_comparisons::any_of;
// if cheap_calc(arg1) <=5, then the expensive calculation
// is never performed
let b = any_of!({cheap_calc(arg1), expensive_calc(arg2)}<=5);
// whereas if we did the following, the expensive calculation would be
// performed regardless of the result of cheap_calc(arg1)
let b = [cheap_calc(arg1), expensive_calc(arg2)].iter().any(|val|val<=&5);

And finally, you can rest assured in the warm and fuzzy feeling that this crate is excessively tested.

Usage

Use the macros by writing any_of!({/*list of expressions*/} operator rhs), where operator can be any of the binary comparison operators, i.e. ==, !=, <=, <, >, and >=. The list of expressions on the left hand side is comma separated. The right hand side of the comparison is an expression as well.

The list of expressions can have a variadic number of elements but must have at least one. It must always be enclosed in curly braces. The expressions on the left hand side need not be of the same type, but the comparison with the right hand side must be valid individually. Furthermore, the expressions can evaluate to anything that can be compared to rhs, not just numbers.

The same goes for the all_of and none_of macros. Check the docs for more information.

This library is inspired by Björn Fahller's DRY comparisons Modern C++ library, which I read about in this blog post on Jonathan Boccara's blog.

Dependencies