Bytes calls (big.Int).Bytes.
()
| 463 | |
| 464 | // Bytes calls (big.Int).Bytes. |
| 465 | func (z *BigInt) Bytes() []byte { |
| 466 | var tmp1 big.Int //gcassert:noescape |
| 467 | return z.inner(&tmp1).Bytes() |
| 468 | } |
| 469 | |
| 470 | // Cmp calls (big.Int).Cmp. |
| 471 | func (z *BigInt) Cmp(y *BigInt) (r int) { |