[#absl-move-07] = xref:absl.adoc[absl]::move :relfileprefix: ../ :mrdocs: `move` overloads == Synopses Declared in `<absl/utility/utility.h>` Cast a value to an rvalue reference to enable moving from it. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class T> [[deprecated("Use std::move instead."), nodiscard]] constexpr std::remove_reference_t<T>&& xref:absl/move-01.adoc[move](T&& arg) noexcept; ---- [.small]#xref:absl/move-01.adoc[_» more..._]# Move a range of elements into an output iterator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class It, class OutIt> [[deprecated("Use std::move instead.")]] constexpr OutIt xref:absl/move-06.adoc[move]( It&& begin, It&& end, OutIt&& output); ---- [.small]#xref:absl/move-06.adoc[_» more..._]# [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 rvalue reference to `arg`. * An iterator past the last moved element. == Parameters [cols="1,4"] |=== | Name| Description | *arg* | The value to cast. | *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]#