gobig is a golang package for useful wrapper functions to make using golang's math/big package easier to use.
This package exists to allow easier usage of golang's math/big package. For instance, using New(int64)
instead of big.NewInt(int64)
means fewer keystrokes and easier-to-read code, especially with complicated mathematical formulae.
Installation can be achieved by:
- Use this command to install the package:
go get -u github.com/jtpeller/gobig
- Import it:
import "github.com/jtpeller/gobig"