If I have two vector containing std::unique_ptr<>, is there a way to add vector b to the end of vector a, thereby deleting vector b?
For example:
std::unique_ptr<std::vector<int>> a(&someintvector);
std::unique_ptr<std::vector<int>> b(&someotherintvector);
How would I go about moving vector b to the end of vector a?