%intFloor()

Aliases%intFloor( ), %integerFloor( )
Parametersmixed @value

    Returns the floor 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 less than @value.

Example:

%intFloor( 1.2 ) // Result: 1
%intFloor( 1.5 ) // Result: 1
%intFloor( 1.8 ) // Result: 1

%intFloor( -1.2 ) // Result: -2
%intFloor( -1.5 ) // Result: -2
%intFloor( -1.8 ) // Result: -2