func strconv.ParseInt
15 uses
strconv (current package)
atoi.go#L202: func ParseInt(s string, base int, bitSize int) (i int64, err error) {
atoi.go#L277: i64, err := ParseInt(s, 10, 0)
encoding/asn1
common.go#L119: i, err := strconv.ParseInt(part[8:], 10, 64)
encoding/json
decode.go#L201: return strconv.ParseInt(string(n), 10, 64)
decode.go#L778: n, err := strconv.ParseInt(s, 10, 64)
decode.go#L989: n, err := strconv.ParseInt(s, 10, 64)
flag
flag.go#L164: v, err := strconv.ParseInt(s, 0, strconv.IntSize)
flag.go#L185: v, err := strconv.ParseInt(s, 0, 64)
fmt
scan.go#L657: i, err := strconv.ParseInt(tok, base, 64)
math/big
ratconv.go#L290: exp, err = strconv.ParseInt(string(digits), 10, 64)
mime/multipart
multipart.go#L357: if v, err := strconv.ParseInt(s, 10, 64); err == nil && v >= 0 {
net/http
fs.go#L917: i, err := strconv.ParseInt(end, 10, 64)
fs.go#L927: i, err := strconv.ParseInt(start, 10, 64)
fs.go#L942: i, err := strconv.ParseInt(end, 10, 64)
server.go#L1187: v, err := strconv.ParseInt(cl, 10, 64)
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |