Function: math-poly-zerop
math-poly-zerop is an autoloaded and byte-compiled function defined in
calc-alg.el.gz.
Signature
(math-poly-zerop A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-alg.el.gz
(defun math-poly-zerop (a)
(or (null a)
(and (null (cdr a)) (Math-zerop (car a)))))