Built-in functions
Unlike arithmetic operations, built-in functions use values provided as input arguments to return the resulted value. The value taken as arguments can be provided in the form of concept variables, value variable, or literal values.
Min / Max functions
Use the max()
function to find the maximum value out of all provided input arguments,
or the min()
to find the minimum.
Example
?maximum = max(100, $x, ?a);
Ceil / Floor
Use the ceil()
function to round up the input value, or the floor()
to round down.
Example
?int = floor(100.7);