in C++, I have two list objects A and B and I want to add all the members of B to the end of A. I\'ve s
list
A
B
one example using boost
std::list A; // object A is a list containing T structure std::list B; // object B is a list containing T structure // append list B to list A BOOST_FOREACH(auto &listElement, B) { A.push_back( listElement ); }