Function: math-lessp
math-lessp is a byte-compiled function defined in calc-ext.el.gz.
Signature
(math-lessp A B)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
;;; True if A is numerically less than B. [P R R] [Public]
(defun math-lessp (a b)
(= (math-compare a b) -1))