Function: map-remove

map-remove is a byte-compiled function defined in map.el.gz.

Signature

(map-remove PRED MAP)

Documentation

Return an alist of the key/val pairs for which (PRED key val) is nil in MAP.

The default implementation delegates to map-filter.

Implementations

(pred map) in `map.el'.

Undocumented

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/map.el.gz
(cl-defgeneric map-remove (pred map)
  "Return an alist of the key/val pairs for which (PRED key val) is nil in MAP.
The default implementation delegates to `map-filter'."
  (map-filter (lambda (key val) (not (funcall pred key val)))
              map))