Category:Nim-Integers

From Rosetta Code
Revision as of 22:25, 20 April 2023 by Lscrd (talk | contribs) (Lscrd moved page Category:Integers to Category:Nim-Integers: Adding Nim in the name to avoid confusion.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Library providing arbitrary precision integers for Nim.

It is more efficient than “bigint” as it wraps GMP whereas “bigint” is written in pure Nim and is less optimized.

Its interface is nicer than the one provided by “bignum” (which wraps GMP too) but “bignum” offers also rational numbers with arbitrary precision.

URL: https://github.com/fsh/integers

Install with command nimble install integers