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