Files
mp11/include/boost
Jonathan Poelen 88314f6877 optimize mp_sort (extract f from the struct to benefit from memoization)
compiler |       gcc-12       |      clang-15
before   | 0:00.46s - 198848K | 0:00.49s - 132632K
after    | 0:00.42s - 183384K | 0:00.48s - 131748K

```cpp
using namespace boost::mp11;

template<class I> using test = mp_sort<mp_iota<I>, mp_less>;

using r1 = mp_transform<test, mp_iota_c<25>>;
```
2025-11-09 20:33:36 +01:00
..
2024-10-14 18:15:14 +03:00