Function: --splice-list
--splice-list is a macro defined in dash.el.
Signature
(--splice-list PRED NEW-LIST LIST)
Documentation
Anaphoric form of -splice-list.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro --splice-list (pred new-list list)
"Anaphoric form of `-splice-list'."
(declare (debug (def-form form form)))
`(-splice-list (lambda (it) (ignore it) ,pred) ,new-list ,list))