Function: math-objectp

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

Signature

(math-objectp A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
;;; True if A is any scalar data object.  [P x]
(defun math-objectp (a)    ;  [Public]
  (or (integerp a)
      (memq (car-safe a) '(frac float cplx
			   polar hms date sdev intv mod))))