Function: calcFunc-negative
calcFunc-negative is an autoloaded and byte-compiled function defined
in calc-prog.el.gz.
Signature
(calcFunc-negative A)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-prog.el.gz
(defun calcFunc-negative (a)
(if (math-looks-negp a)
1
(if (or (math-zerop a)
(math-posp a))
0
(list 'calcFunc-negative a))))