How do I concatenate two std::vectors?
std::vector
std::vector first; std::vector second; first.insert(first.end(), second.begin(), second.end());