Function: calc-isqrt

calc-isqrt is an autoloaded, interactive and byte-compiled function defined in calc-math.el.gz.

Signature

(calc-isqrt ARG)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-math.el.gz
(defun calc-isqrt (arg)
  (interactive "P")
  (calc-slow-wrapper
   (if (calc-is-inverse)
       (calc-unary-op "^2" 'calcFunc-sqr arg)
     (calc-unary-op "isqt" 'calcFunc-isqrt arg))))