Function: calcFunc-mant
calcFunc-mant is an autoloaded and byte-compiled function defined in
calc-arith.el.gz.
Signature
(calcFunc-mant X)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-arith.el.gz
;;; Pull floating-point values apart into mantissa and exponent.
(defun calcFunc-mant (x)
(if (Math-realp x)
(if (or (Math-ratp x)
(eq (nth 1 x) 0))
x
(list 'float (nth 1 x) (- 1 (math-numdigs (nth 1 x)))))
(calc-record-why 'realp x)
(list 'calcFunc-mant x)))