Files
mp11/include
Jonathan Poelen 6d4088f47a optimize mp_transform with 5 lists or more
compiler |      gcc-15       |     clang-20
before   | 0:00.21s - 80328K | 0:00.29s - 117756K
after    | 0:00.20s - 77408K | 0:00.29s - 117468K

```cpp
template<class I, class L = mp_iota<I>> using test
  = mp_transform<mp_list, L, L, L, L, L, L, L, L>;

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