%intCeiling()

Aliases%intCeiling( ), %integerCeiling( )
Parametersmixed @value

    Returns the ceiling of the given @value which is the either the integer
equal to @value or if the @value is not an integer then the first integer
that is greater than @value.

Example:

%intCeiling( 1.2 ) // Result: 2
%intCeiling( 1.5 ) // Result: 2
%intCeiling( 1.8 ) // Result: 2

%intCeiling( -1.2 ) // Result: -1
%intCeiling( -1.5 ) // Result: -1
%intCeiling( -1.8 ) // Result: -1