Simplified Common Lisp reference
min
Symbol class: Mathematics, Arithmetics, Logic and Comparisons
Syntax:
Symbol type: function
minnumbers(one or more) => numeric value
Argument description:
numbers comparable numbers

MIN function returns the minimal number from arguments. Type of resulting number may be different when arguments multiple precision numbers.

(min 1 3 2) => 1
(min 4) => 4
(= 3.0 (min 3 7 3.0 8 3.0d0)) => T
Function indexFull documentation for min (HyperSpec)