Function: org-delete-all
org-delete-all is a byte-compiled function defined in org-macs.el.
Signature
(org-delete-all ELTS LIST)
Documentation
Remove all elements in ELTS from LIST.
Comparison is done with equal. It is a destructive operation
that may remove elements by altering the list structure.
Source Code
;; Defined in ~/.emacs.d/elpa/org-9.8.2/org-macs.el
(defun org-delete-all (elts list)
"Remove all elements in ELTS from LIST.
Comparison is done with `equal'. It is a destructive operation
that may remove elements by altering the list structure."
(while elts
(setq list (delete (pop elts) list)))
list)