Function: -common-suffix
-common-suffix is a byte-compiled function defined in dash.el.
Signature
(-common-suffix &rest LISTS)
Documentation
Return the longest common suffix of LISTS.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -common-suffix (&rest lists)
"Return the longest common suffix of LISTS."
(declare (pure t) (side-effect-free t))
(nreverse (apply #'-common-prefix (mapcar #'reverse lists))))