func strconv.FormatUint

17 uses

	strconv (current package)
		itoa.go#L14: func FormatUint(i uint64, base int) string {

	database/sql
		convert.go#L510: 		return strconv.FormatUint(rv.Uint(), 10)

	encoding/json
		encode.go#L1024: 		w.ks = strconv.FormatUint(w.k.Uint(), 10)

	encoding/xml
		marshal.go#L763: 		return strconv.FormatUint(val.Uint(), 10), nil, nil

	flag
		flag.go#L199: func (i *uintValue) String() string { return strconv.FormatUint(uint64(*i), 10) }
		flag.go#L220: func (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }

	go.uber.org/atomic
		uint32.go#L108: 	return strconv.FormatUint(uint64(v), 10)
		uint64.go#L108: 	return strconv.FormatUint(uint64(v), 10)
		uintptr.go#L108: 	return strconv.FormatUint(uint64(v), 10)

	google.golang.org/protobuf/encoding/prototext
		encode.go#L311: 			e.WriteLiteral("0x" + strconv.FormatUint(uint64(v), hex))
		encode.go#L315: 			e.WriteLiteral("0x" + strconv.FormatUint(v, hex))

	google.golang.org/protobuf/internal/encoding/defval
		default.go#L146: 		return strconv.FormatUint(v.Uint(), 10), nil

	google.golang.org/protobuf/internal/encoding/json
		encode.go#L185: 	e.out = append(e.out, strconv.FormatUint(n, 10)...)

	google.golang.org/protobuf/internal/encoding/text
		encode.go#L204: 	e.out = append(e.out, strconv.FormatUint(n, 10)...)

	internal/profile
		merge.go#L179: 		ids[i] = strconv.FormatUint(l.ID, 16)
		merge.go#L255: 			lines[i*2] = strconv.FormatUint(line.Function.ID, 16)

	regexp/syntax
		prog.go#L311: 	return strconv.FormatUint(uint64(i), 10)