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

Category: [math](builtinsmath)_

The larger of two numbers.

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