Last active
December 16, 2015 07:28
-
-
Save madbence/5398496 to your computer and use it in GitHub Desktop.
Szoftver laboratórium 2, 10. labor, 10. feladat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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