Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 686 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 686 Bytes

gobig

Go Reference

What

gobig is a golang package for useful wrapper functions to make using golang's math/big package easier to use.

Why

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.

How

Installation can be achieved by:

  1. Use this command to install the package:
go get -u github.com/jtpeller/gobig
  1. Import it:
import "github.com/jtpeller/gobig"