A library for calculations with arbitrary length integers. This is a simple wrapper around BigInteger.js by Peter Olson.
x = fromInt 42
y = (fromJust <<< fromBase 16) "fe45aab12"
mersenne10 = (fromInt 2) `pow` (fromInt 89) - one
> x `pow` x
fromString "150130937545296572356771972164254457814047970568738777235893533016064"
> toNumber (y * mersenne10)
4.2248205181941055e+37
> prime mersenne10
true
You can install this package via Bower. You will also need BigInteger.js, which can be installed via npm
:
bower install purescript-bigints
npm install big-integer
For the browser, remember to bundle BigInteger.min.js
with your code.
bower install
npm install
Then, use pulp
to build, run tests and generate the documentation.