mirror of
https://github.com/boostorg/mp11.git
synced 2026-07-08 01:21:00 +02:00
99b8ff6508
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>>;
```