Files
mp11/include
Jonathan Poelen a6b6f8f85e optimize mp_map_find_impl gcc workaround
compiler | gcc-15
before   | 0:01.65s - 381364K
after    | 0:00.99s - 213064K

```cpp
template<class L, class M = mp_transform<mp_list, L>>
struct f { template<class I> using g = mp_map_find<M, I>; };

template<class I, class L = mp_iota<I>> using test
  = mp_transform<f<L>::template g, L>;

using r1 = mp_transform<test, mp_iota_c<50>>;
```
2026-03-25 02:40:18 +02:00
..