Function: calcFunc-leq
calcFunc-leq is an autoloaded and byte-compiled function defined in
calc-prog.el.gz.
Signature
(calcFunc-leq A B)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun calcFunc-leq (a b)
(let ((res (math-compare a b)))
(if (= res 1)
0
(if (= res 2)
(if (and (or (math-looks-negp a) (math-zerop a))
(or (math-looks-negp b) (math-zerop b)))
(list 'calcFunc-geq (math-neg a) (math-neg b))
(list 'calcFunc-leq a b))
1))))