Function: calcFunc-mapeqr

calcFunc-mapeqr is an autoloaded and byte-compiled function defined in calc-map.el.gz.

Signature

(calcFunc-mapeqr FUNC &rest ARGS)

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-map.el.gz
(defun calcFunc-mapeqr (func &rest args)
  (setq args (mapcar (lambda (x)
                       (let ((func (assq (car-safe x)
                                         calc-tweak-eqn-table)))
                         (if func
                             (cons (nth 1 func) (cdr x))
                           x)))
		     args))
  (apply 'calcFunc-mapeqp func args))