how to concat two stl vectors?
|
1
|
|
|
|
|
|
|
||
|
|
|
I would use the insert function Something like:
|
||||
|
|
|
Or you could use:
This pattern is useful if the two vectors don't contain exactly the same type of thing, because you can use something instead of std::back_inserter to convert from one type to the other. |
|||
|
|
|
|
|
||
|
|
