engine:functions:mathematics:round

round()

mathematically rounds the given number x to the next integer value

definition

 round ( x: decimal ) : integer

parameters

x any numeric value

return
number rounded mathematically to integer.

example
round ( 3.4 ) returns 3
round ( 3.6 ) returns 4