Files
mp11/include
Jonathan Poelen 99b8ff6508 optimize mp_sliding_fold
compiler |      gcc-15       |     clang-20
before   | 0:00.23s - 79084K | 0:00.48s - 135100K
after    | 0:00.22s - 77748K | 0:00.46s - 132436K

```cpp
template<class I, class L = mp_iota<I>> using test
  = mp_list<
      mp_sliding_fold<L, mp_int<2>, mp_plus>,
      mp_sliding_fold<L, mp_int<2>, mp_max>
    >;

using r1 = mp_transform<test, mp_iota_c<50>>;
```
2025-11-09 20:34:21 +01:00
..
2025-11-09 20:34:21 +01:00