[c + +] for in c + +_ Each and accumulate functions
for_each function
for_each function is defined in the < algorithm > header file, and its function declaration is:
template<class InputIt, class UnaryFunction>
constexpr UnaryFunction for_each(InputIt first, InputIt last, UnaryFunction f)
{
for (; first != last; ++first) {
f(*first);
}
return f; // implicit move s ...
Posted by Nymphetamine on Fri, 03 Dec 2021 22:31:54 -0800