func strconv.ParseUint

13 uses

	strconv (current package)
		atoi.go#L73: func ParseUint(s string, base int, bitSize int) (uint64, error) {
		atoi.go#L216: 	un, err = ParseUint(s, base, bitSize)

	encoding/json
		decode.go#L787: 					n, err := strconv.ParseUint(s, 10, 64)
		decode.go#L999: 			n, err := strconv.ParseUint(string(item), 10, 64)

	fmt
		scan.go#L687: 	i, err := strconv.ParseUint(tok, base, 64)

	github.com/oapi-codegen/runtime
		bindstring.go#L75: 		val, err = strconv.ParseUint(src, 10, 64)

	net/http
		h2_bundle.go#L6061: 			if cl, err := strconv.ParseUint(vv[0], 10, 63); err == nil {
		h2_bundle.go#L6500: 			if cl, err := strconv.ParseUint(clen, 10, 63); err == nil {
		h2_bundle.go#L9697: 		if cl, err := strconv.ParseUint(clens[0], 10, 63); err == nil {
		request.go#L842: 	maj, err := strconv.ParseUint(vers[5:6], 10, 0)
		request.go#L846: 	min, err := strconv.ParseUint(vers[7:8], 10, 0)
		transfer.go#L1066: 	n, err := strconv.ParseUint(cl, 10, 63)

	net/netip
		netip.go#L1109: 	port16, err := strconv.ParseUint(port, 10, 16)