Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
Container code snippet to triple all values in a container.
There are multiple ways to perform Triple:
#include <algorithm> |
#include <boost/foreach.hpp> |
#include <algorithm> |
This version is given as the answer of Exercise #9: No for-loops.
#include <vector> |
#include <algorithm> |
Prefer algorithms over loops [1][2]
#include <vector> |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.