math/big.Int.SetString (method)

5 uses

	math/big (current package)
		int.go#L495: 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)

	github.com/go-faster/jx
		dec_float_big.go#L35: 	if v, ok = v.SetString(string(str), 10); !ok {