Function: comp--reverse-arithm-fun

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

Signature

(comp--reverse-arithm-fun FUNCTION)

Documentation

Reverse FUNCTION.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(defun comp--reverse-arithm-fun (function)
  "Reverse FUNCTION."
  (cl-case function
    (= '=)
    (> '<)
    (< '>)
    (>= '<=)
    (<= '>=)
    (t function)))