Function: !cdr
!cdr is a macro defined in dash.el.
Signature
(!cdr LIST)
Documentation
Destructive: Set LIST to the cdr of LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro !cdr (list)
"Destructive: Set LIST to the cdr of LIST."
(declare (debug (symbolp)))
`(setq ,list (cdr ,list)))