Function: byte-compile-min-max
byte-compile-min-max is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-min-max FORM)
Documentation
Byte-compile calls to min or max.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-min-max (form)
"Byte-compile calls to `min' or `max'."
(if (cdr form)
(byte-compile-variadic-numeric form)
;; No args: warn and emit code that raises an error when executed.
(byte-compile-normal-call form)))