Function: calcFunc-geq
calcFunc-geq is an autoloaded and byte-compiled function defined in
calc-prog.el.gz.
Signature
(calcFunc-geq A B)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun calcFunc-geq (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-leq (math-neg a) (math-neg b))
(list 'calcFunc-geq a b))
1))))