Vector.+
+that
Group: Operators
Aliases: append
, concatenate
, union
Documentation
Concatenates two vectors, resulting in a new Vector
, containing all the elements of self
, followed by all the elements of that
.
Arguments
that
: The vector to concatenate to the end ofself
.
Examples
Concatenate two single-element vectors.
[1] + [2]