Function: -non-nil
-non-nil is a byte-compiled function defined in dash.el.
Signature
(-non-nil LIST)
Documentation
Return a copy of LIST with all nil items removed.
Source Code
;; Defined in ~/.emacs.d/elpa/dash-20260221.1346/dash.el
(defun -non-nil (list)
"Return a copy of LIST with all nil items removed."
(declare (side-effect-free t))
(--filter it list))