Function: math-objvecp
math-objvecp is a byte-compiled function defined in calc-ext.el.gz.
Signature
(math-objvecp A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-ext.el.gz
;;; True if A is any vector or scalar data object. [P x]
(defun math-objvecp (a) ; [Public]
(or (integerp a)
(memq (car-safe a) '(frac float cplx polar
hms date sdev intv mod vec
;; FIXME: Math-objvecp does not include this one!
incomplete))))