Bits calls (big.Int).Bits.
()
| 457 | |
| 458 | // Bits calls (big.Int).Bits. |
| 459 | func (z *BigInt) Bits() []big.Word { |
| 460 | var tmp1 big.Int //gcassert:noescape |
| 461 | return z.inner(&tmp1).Bits() |
| 462 | } |
| 463 | |
| 464 | // Bytes calls (big.Int).Bytes. |
| 465 | func (z *BigInt) Bytes() []byte { |