Function: seq--into-vector

seq--into-vector is a byte-compiled function defined in seq.el.gz.

Signature

(seq--into-vector SEQUENCE)

Documentation

Concatenate the elements of SEQUENCE into a vector.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/seq.el.gz
(defun seq--into-vector (sequence)
  "Concatenate the elements of SEQUENCE into a vector."
  (if (vectorp sequence)
      sequence
    (vconcat sequence)))