...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::copy_or_move
// In header: <boost/move/algorithm.hpp> template<typename I, typename F> F copy_or_move(I f, I l, F r);
Effects:
for (; first != last; ++result, ++first) *result = *first;
Returns: result
Note: This function is provided because std::uninitialized_copy from some STL implementations is not compatible with move_iterator