concat()

Data / Array Functions

Description

Concatenates two std::vectors.

Syntax

std::vector<T> concat(std::vector<T> a, std::vector<T> b)

Parameters

NameTypeDescription
astd::vectorfirst vector
bstd::vectorsecond vector

Returns

std::vector

Related

Under the Hood

From Processing.h:

String concat(const std::string& other) const { return String(*this + other); }