min(a: f64, b: f64) → f64
Category: [math](builtinsmath)_
The smaller of two numbers.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| a | f64 | The first operand. | — |
| b | f64 | The second operand. | — |
| returns | f64 | The result. | — |
wcl
min(3, 7.5) // the smaller of the two → 3.0