Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template <typename It>
- void PrintRange(It range_begin, It range_end)
- {
- It itr=range_begin;
- while (itr!=range_end){
- cout << *itr <<" ";
- itr++;
- }
- cout << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement