uint (<num>)
numeric
The highest (i.e. rounded up) integer value.
<num>
The value to be rounded.
The following returns the value 5.
numeric i = uint(5)
The following returns the value 6.
i = uint(5.01)
The following returns the value 6.
i = uint(5.9)
The following returns the value -6.
i = uint(-5.9)
Functions: |