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, fir
vector.insert(pos, fir
Try this:
vector::iterator nth = v.begin() + index;