Function: math-equal

math-equal is a byte-compiled function defined in calc-ext.el.gz.

Signature

(math-equal A B)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
;;; True if A is numerically equal to B.  [P N N] [Public]
(defun math-equal (a b)
  (= (math-compare a b) 0))