math/big.Int.SetString (method)
8 uses
math/big (current package)
int.go#L499: 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#L257: b, ok := new(big.Int).SetString(s, 10)
nistec.go#L265: 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)
github.com/go-faster/jx
dec_float_big.go#L35: if v, ok = v.SetString(string(str), 10); !ok {
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |