calc.max
Determine the maximum of a sequence of values.
Example
#calc.max(1, -3, -5, 20, 3, 6) \
#calc.max("typst", "in", "beta")

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
values
anyRequiredPositionalPositional parameters are specified in order, without names.VariadicVariadic parameters can be specified multiple times.
any
RequiredPositionalPositional parameters are specified in order, without names.
Variadic parameters can be specified multiple times.
The sequence of values from which to extract the maximum. Must not be empty.