Files
mp11/include
Jonathan Poelen 2cded73813 optimize mp_remove_if
compiler |      gcc-15       |     clang-20
before   | 0:00.21s - 67308K | 0:00.51s - 137744K
after    | 0:00.21s - 66956K | 0:00.49s - 138492K

```cpp
template<class> using pred = mp_true;
template<class I, class L = mp_iota<I>> using test
  = mp_remove_if<L, pred>;

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