Category:Nim-Integers: Difference between revisions

From Rosetta Code
(Created description for Nim "Integers" library.)
 
m (Lscrd moved page Category:Integers to Category:Nim-Integers: Adding Nim in the name to avoid confusion.)
 
(No difference)

Latest revision as of 22:25, 20 April 2023

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