SetUint64 calls (big.Int).SetUint64.
(x uint64)
| 901 | |
| 902 | // SetUint64 calls (big.Int).SetUint64. |
| 903 | func (z *BigInt) SetUint64(x uint64) *BigInt { |
| 904 | z.updateInnerFromUint64(x, false) |
| 905 | return z |
| 906 | } |
| 907 | |
| 908 | // Sign calls (big.Int).Sign. |
| 909 | func (z *BigInt) Sign() int { |