Go 中 bigint.pow(a) 的等价物是什么?

What is the equivalent for bigint.pow(a) in Go?

在我的用例中,我想知道以下 Java 代码将如何在 Go 中实现

BigInteger base = new BigInteger("16");
int exponent = 1;
BigInteger a = base.pow(exponent); //16^1 = 16

我可以导入 math/big 包并创建大整数,但无法在 Go 中执行 Pow() 函数。我也没有在 Go doc.

中找到该函数

我是否必须为 bigint 实现我自己的 Pow() 版本?谁能帮我解决这个问题?

使用 Exp 并将 m 设置为 nil

var i, e = big.NewInt(16), big.NewInt(2)
i.Exp(i, e, nil)
fmt.Println(i) // Prints 256

游乐场:http://play.golang.org/p/0QFbNHEsn5