Function: math-max-list
math-max-list is a byte-compiled function defined in calc-arith.el.gz.
Signature
(math-max-list A B)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-arith.el.gz
(defun math-max-list (a b)
(if b
(if (or (Math-anglep (car b)) (eq (caar b) 'date)
(and (eq (car (car b)) 'intv) (math-intv-constp (car b)))
(math-infinitep (car b)))
(math-max-list (math-max a (car b)) (cdr b))
(math-reject-arg (car b) 'anglep))
a))