Category:GMP(Go wrapper): Difference between revisions

From Rosetta Code
Content added Content deleted
(Added page for ncw/gmp library which is a GMP wrapper for Go.)
 
(Added library template)
 
Line 1: Line 1:
{{library}}
[https://github.com/ncw/gmp This package] provides a drop in replacement for Go's built in math/big big integer package using the GNU Multiprecision Library (GMP) which, despite the overhead of cgo, is still much faster than the former.
[https://github.com/ncw/gmp This package] provides a drop in replacement for Go's built in math/big big integer package using the GNU Multiprecision Library (GMP) which, despite the overhead of cgo, is still much faster than the former.



Latest revision as of 20:14, 14 March 2021

Library
This is an example of a library. You may see a list of other libraries used on Rosetta Code at Category:Solutions by Library.

This package provides a drop in replacement for Go's built in math/big big integer package using the GNU Multiprecision Library (GMP) which, despite the overhead of cgo, is still much faster than the former.

Its use is subject to the BSD 3-Clause license.