Skip to content

Instantly share code, notes, and snippets.

@fabiogaluppo
Last active October 13, 2015 17:05
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/210b843dcfd01b9aed3f to your computer and use it in GitHub Desktop.
Save fabiogaluppo/210b843dcfd01b9aed3f to your computer and use it in GitHub Desktop.
std::copy and iterator_with_predicate
std::vector<int> xs = { 1, 2, 3, 4, 5, 6, 7, 8 }, ys;
ys.resize(xs.size() / 2);
auto is_odd = [](int i) {
return (i & 0x1) == 0x1;
};
auto iwp = make_iterator_with_predicate(xs, is_odd);
std::copy(iwp.begin(), iwp.end(), ys.begin()); //ys = 1, 3, 5, 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment