Function: seq-keep
seq-keep is a byte-compiled function defined in seq-25.el.
Signature
(seq-keep FUNCTION SEQUENCE)
Documentation
Apply FUNCTION to SEQUENCE and return the list of all the non-nil results.
Source Code
;; Defined in ~/.emacs.d/elpa/seq-2.24/seq-25.el
(defun seq-keep (function sequence)
"Apply FUNCTION to SEQUENCE and return the list of all the non-nil results."
(delq nil (seq-map function sequence)))