Returns the value of x rounded downward to the previous integer (toward negative infinity). This operation is silent, doesn't throw any exception.
assert (floor(decimal32("123.456")) == 123); assert (floor(decimal32("-123.456")) == -124);
See Implementation
Returns the value of x rounded downward to the previous integer (toward negative infinity). This operation is silent, doesn't throw any exception.