Concatenate two vectors, moving elements.
Declared in <util/vector.h>
template<typename V>
V
Cat(
V v1,
V&& v2);
v1 with the elements of v2 appended.
| Name | Description |
|---|---|
| v1 | The first vector, taken by value and used as the result. |
| v2 | The second vector, whose elements are moved onto the end of v1. |