Category:Nim-Integers

From Rosetta Code
Revision as of 22:24, 20 April 2023 by Lscrd (talk | contribs) (Created description for Nim "Integers" library.)
(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