I have a vector of unique_ptr\'s and I want to append them to another vector of unique_ptrs. I would normally do a simple insert:
std::vector
You can't copy them; you'll have to move them.
std::move(baz.begin(), baz.end(), std::back_inserter(bar));