Function: cl-revappend

cl-revappend is a byte-compiled function defined in cl-extra.el.gz.

Signature

(cl-revappend X Y)

Documentation

Equivalent to (append (reverse X) Y).

Aliases

revappend (obsolete since 27.1)

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-extra.el.gz
;;; List functions.

;;;###autoload
(defsubst cl-revappend (x y)
  "Equivalent to (append (reverse X) Y)."
  (declare (side-effect-free t))
  (nconc (reverse x) y))