func strconv.FormatUint
27 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#L1022: w.s = strconv.FormatUint(w.v.Uint(), 10)
encoding/xml
marshal.go#L759: return strconv.FormatUint(val.Uint(), 10), nil, nil
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) }
github.com/emirpasic/gods/utils
utils.go#L31: return strconv.FormatUint(uint64(value.(uint8)), 10)
utils.go#L33: return strconv.FormatUint(uint64(value.(uint16)), 10)
utils.go#L35: return strconv.FormatUint(uint64(value.(uint32)), 10)
utils.go#L37: return strconv.FormatUint(uint64(value.(uint64)), 10)
github.com/ghodss/yaml
yaml.go#L261: s = strconv.FormatUint(typedVal, 10)
github.com/google/pprof/profile
merge.go#L197: ids[i] = strconv.FormatUint(l.ID, 16)
merge.go#L273: lines[i*2] = strconv.FormatUint(line.Function.ID, 16)
github.com/jackc/pgtype
oid.go#L50: return append(buf, strconv.FormatUint(uint64(src), 10)...), nil
pguint32.go#L113: return append(buf, strconv.FormatUint(uint64(src.Uint), 10)...), nil
go.opentelemetry.io/otel/label
value.go#L261: return strconv.FormatUint(uint64(v.AsUint32()), 10)
value.go#L263: return strconv.FormatUint(v.AsUint64(), 10)
golang.org/x/crypto/openpgp
write.go#L290: return nil, errors.InvalidArgumentError("cannot encrypt a message to key id " + strconv.FormatUint(to[i].PrimaryKey.KeyId, 16) + " because it has no encryption keys")
google.golang.org/protobuf/encoding/prototext
encode.go#L374: e.WriteLiteral("0x" + strconv.FormatUint(uint64(v), hex))
encode.go#L378: e.WriteLiteral("0x" + strconv.FormatUint(v, hex))
google.golang.org/protobuf/internal/encoding/defval
default.go#L146: return strconv.FormatUint(v.Uint(), 10), nil
google.golang.org/protobuf/internal/encoding/json
encode.go#L185: e.out = append(e.out, strconv.FormatUint(n, 10)...)
google.golang.org/protobuf/internal/encoding/text
encode.go#L206: e.out = append(e.out, strconv.FormatUint(n, 10)...)
gopkg.in/yaml.v2
encode.go#L353: s := strconv.FormatUint(in.Uint(), 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)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |