github.com/neatlab/neatio@v1.7.3-0.20220425043230-d903e92fcc75/utilities/common/big.go (about)

     1  package common
     2  
     3  import "math/big"
     4  
     5  var (
     6  	Big1   = big.NewInt(1)
     7  	Big2   = big.NewInt(2)
     8  	Big3   = big.NewInt(3)
     9  	Big0   = big.NewInt(0)
    10  	Big32  = big.NewInt(32)
    11  	Big256 = big.NewInt(256)
    12  	Big257 = big.NewInt(257)
    13  )