[#absl-move-06] = xref:absl.adoc[absl]::move :relfileprefix: ../ :mrdocs: Move a range of elements into an output iterator. == Synopsis Declared in `<absl/utility/utility.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class It, class OutIt> [[deprecated("Use std::move instead.")]] constexpr OutIt move( It&& begin, It&& end, OutIt&& output); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]: Use std::move instead.. Use of this entity is allowed but discouraged. ==== == Return Value An iterator past the last moved element. == Parameters [cols="1,4"] |=== | Name| Description | *begin* | The start of the input range. | *end* | The end of the input range. | *output* | The start of the destination range. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#