Can I insert an array into a vector?

Started by
0 comments, last by Oluseyi 15 years, 4 months ago
I think I can use the insert command to insert an array into a vector as far as tell from this, I tried to do it like this: myvector.insert( start_position, data, number_of_elements ); At least that's how I thought it worked but I get an error on the number_of_elements and I'm not sure what type I'm suppose to use.
Remember Codeka is my alternate account, just remember that!
Advertisement
Quote:Original post by CodaKiller
myvector.insert( start_position, data, number_of_elements );

myvector.insert( start_position, data, data + number_of_elements );

This topic is closed to new replies.

Advertisement