Possible Duplicate:
C++: Appending a vector to a vector
I'm looking for unlimited container (one that I add elements at run time as much as I need as long as I have enough space),such as 'vector' or 'linked list' that has a methos that accepts another container and copies its elements.
Is there such a thing?