Function: --any?
--any? is a macro defined in dash.el.
Signature
(--any? FORM LIST)
Documentation
Anaphoric form of -any?.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defmacro --any? (form list)
"Anaphoric form of `-any?'."
(declare (debug (form form)))
`(and (--some ,form ,list) t))