Skip to content

Instantly share code, notes, and snippets.

@fabiogaluppo
Last active October 13, 2015 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiogaluppo/b9116afc08e72315190c to your computer and use it in GitHub Desktop.
Save fabiogaluppo/b9116afc08e72315190c to your computer and use it in GitHub Desktop.
declarative sample std::replace
std::vector<int> xs = { 1, 2, 3, 4, 5, 6, 7, 8 };
std::replace(xs.begin(), xs.end(), 5, 500); //1, 2, 3, 4, 500, 6, 7, 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment