func strconv.FormatUint

8 uses

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

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

	github.com/gotd/log
		attr.go#L116: 		return strconv.FormatUint(v.num, 10)

	github.com/gotd/td/bin
		fields.go#L17: 	return strconv.FormatUint(uint64(f), 2)

	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)

	rsc.io/qr/coding
		qr.go#L251: 	s += "+" + strconv.FormatUint(uint64(p.Offset()), 10)