some `big.Int` operation mutates the receiver and set it to nil (like `ModInverse`) . So a code like ```go v := pool.Get() v.ModInverse(...) pool.Put(v) ``` May put a nil value into the pool.
some
big.Intoperation mutates the receiver and set it to nil (likeModInverse) .So a code like
May put a nil value into the pool.