Function: math-floor-special
math-floor-special is an autoloaded and byte-compiled function defined
in calc-arith.el.gz.
Signature
(math-floor-special A PREC)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-arith.el.gz
(defun math-floor-special (a prec)
(if (Math-messy-integerp prec)
(setq prec (math-trunc prec)))
(or (integerp prec)
(math-reject-arg prec 'fixnump))
(if (and (<= prec 0)
(math-provably-integerp a))
a
(calcFunc-scf (math-floor (let ((calc-prefer-frac t))
(calcFunc-scf a prec)))
(- prec))))