dry-comparisons icon indicating copy to clipboard operation
dry-comparisons copied to clipboard

C++17 Utility classes for comparing multiple values in one simple expression

Results 4 dry-comparisons issues
Sort by recently updated
recently updated
newest added

``` C:\Users\root\Desktop\github\dry-comparisons>if exist build RMDIR /S /Q build C:\Users\root\Desktop\github\dry-comparisons>if not exist build mkdir build C:\Users\root\Desktop\github\dry-comparisons>cd build C:\Users\root\Desktop\github\dry-comparisons\build>cmake .. -G "Visual Studio 16 2019" -A x64 -- Selecting Windows SDK version...

I'm really interested by the idea, I would like to help.

It would be really nice to have the ability to do something like this: `if (all_of{a, b, c} < any_of{100, 200}) {//...}` Obviusly, the same for the rest of the...