Function: comp--negate-arithm-cmp-fun

comp--negate-arithm-cmp-fun is a byte-compiled function defined in comp.el.gz.

Signature

(comp--negate-arithm-cmp-fun FUNCTION)

Documentation

Negate FUNCTION.

Return nil if we don't want to emit constraints for its negation.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--negate-arithm-cmp-fun (function)
  "Negate FUNCTION.
Return nil if we don't want to emit constraints for its negation."
  (cl-ecase function
    (= nil)
    (> '<=)
    (< '>=)
    (>= '<)
    (<= '>)))