no-more-secrets
no-more-secrets
Ok, thanks; any plans to add this feature? :-) Perhaps you could reuse essentially the same large macro to define it, but instead of creating an actual enum inside of...
Ok, I will take a look and try to put together a PR. For testing I will follow the directions in `CONTRIBUTING.md` (assuming it is up to date). Thanks
Cool! I will give magic_enum a try; I suppose that it might be able to replace most uses of Better Enums in my code. But of course it is not...
Here are some profiling numbers and a standalone reproducer: ```C++ int counter = 0; vector v{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; auto my_pipe = rg::make_pipeable( [](...
A few extra points: 1) with optimizations at -O2 all three cases perform the same (and much faster) 2) same results with gcc 8 for both debug/release So it appears...
Would it be feasible/desirable to treat the 1,2 argument cases specially and have them use fat iterators, then beyond that, just use the variant? Do I understand correctly that fat...
Hi Casey, thanks for pointing that out! And just to clarify, in my actual code I am calling `concat` on two ranges (I agree there is no need to `concat`...
Thanks for that optimization, I bet that will help improve the performance of generic code that might end up `concat`'ing a single range. Since my original issue still remains (slow...
I think I've just hit this as well. ``` $ g++ --version g++ (Debian 10.2.0-9) 10.2.0 ``` Std version: `-std=c++2a` Range-v3 versions: attempted with a few different versions, including `0.11.0`...
I've observed this bug with multiple versions of range-v3, but not all builds of g++ 10.2.0. When I build my own version of g++ 10.2.0 I do not hit the...