Function: math-lang-compose-switch-args

math-lang-compose-switch-args is a byte-compiled function defined in calc-lang.el.gz.

Signature

(math-lang-compose-switch-args A FN)

Documentation

Compose the arguments to a Calc function in reverse order.

This is used for various language modes which have functions in reverse order to Calc's.

Source Code

;; Defined in /usr/src/emacs/lisp/calc/calc-lang.el.gz
(defun math-lang-compose-switch-args (a fn)
  "Compose the arguments to a Calc function in reverse order.
This is used for various language modes which have functions in reverse
order to Calc's."
  (list 'horiz (nth 1 fn)
        "("
        (math-compose-expr (nth 2 a) 0)
        ","
        (math-compose-expr (nth 1 a) 0)
        ")"))