Skip to content

Release 1.6.0

Compare
Choose a tag to compare
@leif-ibsen leif-ibsen released this 16 Sep 08:20
· 16 commits to master since this release

New in release 1.6.0:

  1. A new constructor to create a BInt from a decimal value i.e BInt(1.7e12)

  2. A 'quotientExact' method where a.quotientExact(b) is faster than a / b if it is known that the remainder of the division is 0

  3. A 'population' computed property that gives the number of 1 bits in a BInt, i.e. BInt(14).population is 3