#084 – The transition from std::transform to std::ranges::transform
std::transform has been the standard library’s go-to “apply a function to every element of a sequence” tool since C++98. It works. It’s also showing every one of its twenty-five-plus years: callers spell out begin() and end() for every range, ad-hoc projections require an extra lambda…