Function: math-multiple-of

math-multiple-of is an autoloaded and byte-compiled function defined in calc-alg.el.gz.

Signature

(math-multiple-of EXPR TERM)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-alg.el.gz
(defun math-multiple-of (expr term)
  (let ((p (math-linear-in expr term)))
    (and p
	 (math-zerop (car p))
	 (nth 1 p))))