Function: -tails
-tails is a byte-compiled function defined in dash.el.
Signature
(-tails LIST)
Documentation
Return all suffixes of LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -tails (list)
"Return all suffixes of LIST."
(declare (pure t) (side-effect-free t))
(-reductions-r-from #'cons nil list))