/ Published in: C++
Expand |
Embed | Plain Text
template<typename InputIterator> void printall(InputIterator first, InputIterator last) { for(; first != last; ++first) { std::cout << *first << std::endl; } }
You need to login to post a comment.
