Round x downward according to base, ie. returns the next integer smaller or equal to x which is divisible by base.
x rounded downward according to base.
assert(floor(8, 10) == 0); assert(floor(32, 16) == 32); assert(floor(101, 100) == 100);
See Implementation
Round x downward according to base, ie. returns the next integer smaller or equal to x which is divisible by base.