Function: vconcat
vconcat is a function defined in fns.c.
Signature
(vconcat &rest SEQUENCES)
Documentation
Concatenate all the arguments and make the result a vector.
The result is a vector whose elements are the elements of all the arguments. Each argument may be a list, vector or string.
Other relevant functions are documented in the vector group.
Probably introduced at or before Emacs version 19.29.
Shortdoc
;; vector
(vconcat '(1 2) [3 4])
=> [1 2 3 4]
Source Code
// Defined in /usr/src/emacs/src/fns.c
{
return concat_to_vector (nargs, args);
}