func strconv.FormatUint

8 uses

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

	encoding/json
		encode.go#L1022: 		w.s = strconv.FormatUint(w.v.Uint(), 10)

	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) }

	os/user
		cgo_lookup_unix.go#L111: 		Uid:      strconv.FormatUint(uint64(pwd.pw_uid), 10),
		cgo_lookup_unix.go#L112: 		Gid:      strconv.FormatUint(uint64(pwd.pw_gid), 10),

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

	src.elv.sh/pkg/persistent/hashmap
		hashmap.go#L166: 		return strconv.FormatUint(kref.Uint(), 10), nil