Function: math-rwapply-inv

math-rwapply-inv is a byte-compiled function defined in calc-rewr.el.gz.

Signature

(math-rwapply-inv EXPR)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-rewr.el.gz
(defun math-rwapply-inv (expr)
  (if (and (Math-integerp expr)
	   calc-prefer-frac)
      (math-make-frac 1 expr)
    (list '/ 1 expr)))