for_eachアルゴリズム

コンテナの要素に、単項関数オブジェクトを順次適用できます。

template<class InputIterator, class Function>
Function for_each(
   InputIterator _First,
   InputIterator _Last,
   Function _Func
);

サンプルコード

for_each( v.begin(), v.end(), Func<int>() );

コンテナvの各要素をFunc()に渡します。

参考

参考書

Microsoft Learnから検索