Function: cl-revappend
cl-revappend is an autoloaded and 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
(defun cl-revappend (x y)
"Equivalent to (append (reverse X) Y)."
(nconc (reverse x) y))