concat()
Data / Array FunctionsDescription
Concatenates two std::vectors.
Syntax
std::vector<T> concat(std::vector<T> a, std::vector<T> b)
Parameters
| Name | Type | Description |
|---|---|---|
| a | std::vector | first vector |
| b | std::vector | second vector |
Returns
std::vectorRelated
Under the Hood
From Processing.h:
String concat(const std::string& other) const { return String(*this + other); }