Function: comp--pred-to-neg-cstr
comp--pred-to-neg-cstr is a byte-compiled function defined in
comp.el.gz.
Signature
(comp--pred-to-neg-cstr PREDICATE)
Documentation
Given PREDICATE, return the corresponding negative constraint.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--pred-to-neg-cstr (predicate)
"Given PREDICATE, return the corresponding negative constraint."
(or (cdr-safe (gethash predicate comp-known-predicates-h))
(gethash predicate (comp-cstr-ctxt-pred-type-h comp-ctxt))))