Function: filesets-ormap
filesets-ormap is a byte-compiled function defined in filesets.el.gz.
This function is obsolete since 29.1; use seq-drop-while instead.
Signature
(filesets-ormap FSOM-PRED LST)
Documentation
Return the tail of LST for the head of which FSOM-PRED is non-nil.
Source Code
;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defun filesets-ormap (fsom-pred lst)
"Return the tail of LST for the head of which FSOM-PRED is non-nil."
(declare (obsolete seq-drop-while "29.1"))
(seq-drop-while (lambda (x) (not (funcall fsom-pred x))) lst))