Category:Nim-Integers

From Rosetta Code

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