C++ STL Vectors: Get iterator from index?

So, I wrote a bunch of code that accesses elements in an stl vector by index[], but now I need to copy just a chunk of the vector. It looks like vector.insert(pos, first, last) is the function I want… except I only have first and last as ints. Is there any nice way I can get an iterator to these values?

5 Answers
5

Leave a Comment