Text calls (big.Int).Text.
(base int)
| 956 | |
| 957 | // Text calls (big.Int).Text. |
| 958 | func (z *BigInt) Text(base int) string { |
| 959 | if z == nil { |
| 960 | // Fast-path that avoids innerOrNil, allowing inner to be inlined. |
| 961 | return "<nil>" |
| 962 | } |
| 963 | var tmp1 big.Int //gcassert:noescape |
| 964 | return z.inner(&tmp1).Text(base) |
| 965 | } |
| 966 | |
| 967 | // TrailingZeroBits calls (big.Int).TrailingZeroBits. |
| 968 | func (z *BigInt) TrailingZeroBits() uint { |