Does bulk memmove speed up std::remove_if? (No.)
Summary
The article compares two approaches to std::remove_if in C++ (smooth vs chunky) and includes benchmark results. It concludes that the chunky approach generally underperforms, especially for short runs, and discusses how cache and branch-prediction effects influence performance more than naive memmove benefits.