Function: set:remove-key-value
set:remove-key-value is a byte-compiled function defined in set.el.
Signature
(set:remove-key-value KEY SET)
Documentation
Remove element whose car matches KEY in SET.
Return the set. Use (setq set (set:remove-key-value key set)) to assure set is always properly modified.
Use set:equal-op to match against KEY. Assume each element in the set has a car and a cdr.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/set.el
(defun set:remove-key-value (key set)
"Remove element whose car matches KEY in SET.
Return the set. Use (setq set (set:remove-key-value key set)) to assure set is
always properly modified.
Use `set:equal-op' to match against KEY. Assume each element in the set has a
car and a cdr."
(assoc-delete-all key set set:equal-op))