Function: seq--into-string

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

Signature

(seq--into-string SEQUENCE)

Documentation

Concatenate the elements of SEQUENCE into a string.

Source Code

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