[#Cat-05a] = Cat :mrdocs: `Cat` overloads == Synopses Declared in `<util/vector.h>` Concatenate two vectors. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename V> V xref:Cat-05d.adoc[Cat]( V v1, V const& v2); ---- [.small]#xref:Cat-05d.adoc[_» more..._]# Concatenate two vectors, moving elements. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename V> V xref:Cat-00.adoc[Cat]( V v1, V&& v2); ---- [.small]#xref:Cat-00.adoc[_» more..._]# == Return Value v1 with the elements of v2 appended. == Parameters [cols="1,4"] |=== | Name| Description | *v1* | The first vector, taken by value and used as the result. | *v2* | The second vector, whose elements are copied onto the end of v1. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#