Scalar FunctionsMath Functions
max_of
Return the maximum of 2 to 64 comparable arguments.
All arguments must belong to the same family (numeric, datetime, timespan, string, or bool). Null arguments are skipped; if every argument is null the result is null.
Syntax
max_of(arg)Parameters
Prop
Type
Returns: dynamic
Examples
Example 1
print max_of(3, 1, 2)| print_0 (long) |
|---|
| 3 |