[#absl-c_move-03] = xref:absl.adoc[absl]::c_move :relfileprefix: ../ :mrdocs: Container‐based version of the <algorithm> `std::move()` function to move a container's elements into an iterator. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename C, typename OutputIterator> constexpr /* implementation-defined */ c_move( C&& src, OutputIterator&& dest); ---- == Return Value An iterator to the end of the moved range in the destination. == Parameters [cols="1,4"] |=== | Name| Description | *src* | The container whose elements to move. | *dest* | The output iterator receiving the moved elements. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#