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/d3af28e149c92e3be650 to your computer and use it in GitHub Desktop.
Save fabiogaluppo/d3af28e149c92e3be650 to your computer and use it in GitHub Desktop.
imperative sample std::replace
auto first = xs.begin();
auto last = xs.end();
while (first != last)
{
if (*first == 5)
*first = 500;
++first;
}
//xs = 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