我一直在查看 C++ 文档中的一个函数,该函数使用移动语义将一系列元素从一个容器移动到另一个容器。但是,我还没有找到这样的功能。我错过了什么?
如果不复制和使用显式循环,我将如何执行以下操作?
// Move 10 elements from beginning of source to end of dest
dest.end() <- move(source.begin(), source.begin() + 10)
我一直在查看 C++ 文档中的一个函数,该函数使用移动语义将一系列元素从一个容器移动到另一个容器。但是,我还没有找到这样的功能。我错过了什么?
如果不复制和使用显式循环,我将如何执行以下操作?
// Move 10 elements from beginning of source to end of dest
dest.end() <- move(source.begin(), source.begin() + 10)