12345678
template <typename T> void func(std::list<T>::iterator begin, std::list<T>::iterator end) { for(; begin != end; ++begin) { // stuff } }