func strconv.FormatUint

13 uses

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

	encoding/json
		encode.go#L974: 		return strconv.FormatUint(k.Uint(), 10), nil

	flag
		flag.go#L216: func (i *uintValue) String() string { return strconv.FormatUint(uint64(*i), 10) }
		flag.go#L237: 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#L321: 			e.WriteLiteral("0x" + strconv.FormatUint(uint64(v), hex))
		encode.go#L325: 			e.WriteLiteral("0x" + strconv.FormatUint(v, hex))

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

	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#L313: 	return strconv.FormatUint(uint64(i), 10)