Floor a number to the given precision.
e.g. flp(2, 1.239) => 1.23
The number of decimal places to keep. Must be a non-negative integer. Zero is allowed, but you should just call 'fl' directly in that case.
The number to round.
Floor a number to the given precision.
e.g. flp(2, 1.239) => 1.23