(res *BigInt, pow int64)
| 121 | } |
| 122 | |
| 123 | func setBigWithPow(res *BigInt, pow int64) { |
| 124 | var tmp BigInt |
| 125 | tmp.SetInt64(pow) |
| 126 | res.Exp(bigTen, &tmp, nil) |
| 127 | } |
| 128 | |
| 129 | // tableExp10 returns 10^x for x >= 0, looked up from a table when |
| 130 | // possible. This returned value must not be mutated. tmp is used as an |
no test coverage detected
searching dependent graphs…