コンテナの要素に、単項関数オブジェクトを順次適用できます。
template<class InputIterator, class Function> Function for_each( InputIterator _First, InputIterator _Last, Function _Func );
for_each( v.begin(), v.end(), Func<int>() );
コンテナvの各要素をFunc()に渡します。