Function: min
min is a function defined in data.c.
Signature
(min NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)
Documentation
Return smallest of all the arguments (which must be numbers or markers).
The value is always a number; markers are converted to numbers.
Other relevant functions are documented in the number group.
Probably introduced at or before Emacs version 26.1.
Shortdoc
;; number
(min 7 9 3)
=> 3
Source Code
// Defined in /usr/src/emacs/src/data.c
{
return minmax_driver (nargs, args, ARITH_LESS);
}