Function: math-div2

math-div2 is an autoloaded and byte-compiled function defined in calc-misc.el.gz.

Signature

(math-div2 A)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-misc.el.gz
;; Compute A / 2, for small or big integer A.  [I i]
;; If A is negative, type of truncation is undefined.
;;;###autoload
(defun math-div2 (a)
  (/ a 2))