Function: math-map-binop
math-map-binop is a byte-compiled function defined in calcalg3.el.gz.
Signature
(math-map-binop BINOP ARGS1 ARGS2)
Documentation
Apply BINOP to the elements of the lists ARGS1 and ARGS2.
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calcalg3.el.gz
(defun math-map-binop (binop args1 args2)
"Apply BINOP to the elements of the lists ARGS1 and ARGS2."
(if args1
(cons
(funcall binop (car args1) (car args2))
(funcall 'math-map-binop binop (cdr args1) (cdr args2)))))