func strconv.FormatUint
22 uses
strconv (current package)
itoa.go#L14: func FormatUint(i uint64, base int) string {
database/sql
convert.go#L510: return strconv.FormatUint(rv.Uint(), 10)
encoding/json
encode.go#L1005: return strconv.FormatUint(k.Uint(), 10), nil
encoding/xml
marshal.go#L788: return strconv.FormatUint(val.Uint(), 10), nil, 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) }
github.com/jackc/pgx/v5/pgtype
tsvector.go#L124: s := strconv.FormatUint(uint64(p.Position), 10)
uint32.go#L187: return append(buf, strconv.FormatUint(uint64(v), 10)...), nil
uint32.go#L202: return append(buf, strconv.FormatUint(uint64(v.Uint32), 10)...), nil
uint32.go#L331: return s.ScanText(Text{String: strconv.FormatUint(n, 10), Valid: true})
uint64.go#L77: return strconv.FormatUint(src.Uint64, 10), nil
uint64.go#L161: return append(buf, strconv.FormatUint(uint64(v), 10)...), nil
uint64.go#L176: return append(buf, strconv.FormatUint(v.Uint64, 10)...), nil
uint64.go#L302: return s.ScanText(Text{String: strconv.FormatUint(n, 10), Valid: true})
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)
os/user
cgo_lookup_unix.go#L72: Uid: strconv.FormatUint(uint64(_C_pw_uid(pwd)), 10),
cgo_lookup_unix.go#L73: Gid: strconv.FormatUint(uint64(_C_pw_gid(pwd)), 10),
regexp/syntax
prog.go#L313: return strconv.FormatUint(uint64(i), 10)