Floor(
     double:value
)
double

Arguments

value

Input value.

Return value

Rounded input value.

Description

Rounds the input value down to the nearest integer (toward negative infinity).

Example:

Output( Floor(1.6) );
--> 1.000000

See also:
Ceil
Round