Calculating a range of arbitrarily large prime numbers in F# 2.0
The library System.Numerics.dll, who was introduced in .Net 4.0, contains a System.Numerics.BigInteger
structure. BigInteger
represents a whole number of arbitrary size (or precision). Before .Net 4.0, the largest number that could be represented out of the box was System.Double.MaxValue
…