Go back to Richel Bilderbeek's homepage.
Go back to Richel Bilderbeek's C++ page.
std::copy_backward is an STL
algorithm to copy a
container
to the end of another. std::copy_backward does not reverse
the order of the copied container, use
std::reverseto do so.
#include <algorithm> |
Go back to Richel Bilderbeek's C++ page.
Go back to Richel Bilderbeek's homepage.