func strconv.AppendUint

24 uses

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

	database/sql
		convert.go#L526: 		return strconv.AppendUint(buf, rv.Uint(), 10), true

	encoding/json
		encode.go#L563: 	b := strconv.AppendUint(e.scratch[:0], v.Uint(), 10)

	encoding/xml
		marshal.go#L864: 				if err := emit(p, strconv.AppendUint(scratch[:0], vf.Uint(), 10)); err != nil {

	github.com/go-pg/pg/v10/types
		append_value.go#L155: 	return strconv.AppendUint(b, v.Uint(), 10)

	github.com/google/go-cmp/cmp/internal/value
		name.go#L126: 			b = strconv.AppendUint(b, uint64(t.Len()), 10)

	go.pact.im/x/phcformat/encode
		encode.go#L192: 	return strconv.AppendUint(dst, uint64(v), 10)

	go.pact.im/x/zapjournal
		append.go#L34: 	dst = strconv.AppendUint(dst, uint64(v), 16)
		encoder.go#L180: 	e.buf = strconv.AppendUint(e.buf, value, 10)
		json.go#L55: 	e.setBuf(strconv.AppendUint(e.buf(), v, 10))
		json.go#L62: 	e.setBuf(strconv.AppendUint(e.buf(), uint64(v), 16))

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

	golang.org/x/tools/internal/event/keys
		keys.go#L245: 	w.Write(strconv.AppendUint(buf, uint64(k.From(l)), 10))
		keys.go#L277: 	w.Write(strconv.AppendUint(buf, uint64(k.From(l)), 10))
		keys.go#L309: 	w.Write(strconv.AppendUint(buf, uint64(k.From(l)), 10))
		keys.go#L341: 	w.Write(strconv.AppendUint(buf, uint64(k.From(l)), 10))
		keys.go#L373: 	w.Write(strconv.AppendUint(buf, k.From(l), 10))

	google.golang.org/protobuf/internal/encoding/json
		encode.go#L116: 				out = strconv.AppendUint(out, uint64(r), 16)

	google.golang.org/protobuf/internal/encoding/text
		encode.go#L141: 				out = strconv.AppendUint(out, uint64(r), 16)
		encode.go#L149: 				out = strconv.AppendUint(out, uint64(r), 16)
		encode.go#L153: 				out = strconv.AppendUint(out, uint64(r), 16)

	google.golang.org/protobuf/reflect/protoreflect
		source.go#L122: 	b = strconv.AppendUint(b, uint64((*p)[0]), 10)

	net/netip
		netip.go#L1130: 			buf = strconv.AppendUint(buf, uint64(a[i]), 10)
		netip.go#L1133: 		buf = strconv.AppendUint(buf, uint64(p.port), 10)