Closed ilikerobots closed 8 years ago
The BigInt toDouble() method is not calculating the nearest double correctly. Example: expect(BigInt.parse("1").toDouble(), equals(1.0)); provides
expect(BigInt.parse("1").toDouble(), equals(1.0));
Expected: <1.0> Actual: <2.0>
Thanks for catching this !
fixed by #15
version 0.1.9 published
The BigInt toDouble() method is not calculating the nearest double correctly. Example:
expect(BigInt.parse("1").toDouble(), equals(1.0));
provides