Skip to content

Instantly share code, notes, and snippets.

@madbence
Last active December 16, 2015 07:28
Show Gist options
  • Save madbence/5398496 to your computer and use it in GitHub Desktop.
Save madbence/5398496 to your computer and use it in GitHub Desktop.
Szoftver laboratórium 2, 10. labor, 10. feladat
template<class Iterator, class Function>
void forEach(Iterator begin, Iterator end, Function& fun) {
for(;begin!=end;begin++){
fun(*begin);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment