Release 1.6.0
New in release 1.6.0:
-
A new constructor to create a BInt from a decimal value i.e BInt(1.7e12)
-
A 'quotientExact' method where a.quotientExact(b) is faster than a / b if it is known that the remainder of the division is 0
-
A 'population' computed property that gives the number of 1 bits in a BInt, i.e. BInt(14).population is 3