func strconv.AppendUint

6 uses

	strconv (current package)
		itoa.go#L50: func AppendUint(dst []byte, i uint64, base int) []byte {

	encoding/json
		encode.go#L523: 	b = strconv.AppendUint(b, v.Uint(), 10)

	go.uber.org/zap/buffer
		buffer.go#L68: 	b.bs = strconv.AppendUint(b.bs, i, 10)

	net/netip
		netip.go#L1118: 			buf = strconv.AppendUint(buf, uint64(a[i]), 10)
		netip.go#L1121: 		buf = strconv.AppendUint(buf, uint64(p.port), 10)
		netip.go#L1162: 	b = strconv.AppendUint(b, uint64(p.port), 10)