Function: calcFunc-fround
calcFunc-fround is an autoloaded and byte-compiled function defined in
calc-arith.el.gz.
Signature
(calcFunc-fround A &optional PREC)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-arith.el.gz
(defun calcFunc-fround (a &optional prec)
(if (and (Math-messy-integerp a)
(or (not prec) (and (integerp prec)
(<= prec 0))))
a
(math-float (math-round a prec))))