min(a: f64, b: f64) → f64

Category: [math](builtinsmath)_

The smaller of two numbers.

ParameterTypeDescriptionRemarks
af64The first operand.
bf64The second operand.
returnsf64The result.
wcl
min(3, 7.5)   // the smaller of the two → 3.0