math/big.Int.SetString (method)
9 uses
math/big (current package)
int.go#L492: func (z *Int) SetString(s string, base int) (*Int, bool) {
ratconv.go#L66: if _, ok := z.a.SetString(s[:sep], 0); !ok {
crypto/elliptic
nistec.go#L281: b, ok := new(big.Int).SetString(s, 10)
nistec.go#L289: b, ok := new(big.Int).SetString(s, 16)
crypto/x509
oid.go#L158: if _, ok := first.SetString(firstNum, 10); !ok {
oid.go#L161: if _, ok := second.SetString(secondNum, 10); !ok {
oid.go#L177: b, ok := big.NewInt(0).SetString(strNum, 10)
go/constant
value.go#L437: if x, ok := newInt().SetString(lit, 0); ok {
golang.org/x/tools/internal/gcimporter
iexport.go#L1316: i.SetString(v.ExactString(), 10)