Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 389 Bytes

README.rst

File metadata and controls

29 lines (19 loc) · 389 Bytes

floatcmp

Compare floating-point numbers with optional precision.

composer require nickolasburr/floatcmp:~1.0
$a = 0.00528690;
$b = 0.00528;

if (floatcmp($a, $b, 5) === 0) {
    /* $a and $b are equal at given precision */
}