reflect.Value.Uint (method)
27 uses
reflect (current package)
deepequal.go#L163: return v1.Uint() == v2.Uint()
iter.go#L59: return rangeNum[uint](v.Uint(), v.Type())
iter.go#L61: return rangeNum[uint8](v.Uint(), v.Type())
iter.go#L63: return rangeNum[uint16](v.Uint(), v.Type())
iter.go#L65: return rangeNum[uint32](v.Uint(), v.Type())
iter.go#L67: return rangeNum[uint64](v.Uint(), v.Type())
iter.go#L69: return rangeNum[uintptr](v.Uint(), v.Type())
value.go#L1670: return v.Uint() == 0
value.go#L2542: func (v Value) Uint() uint64 {
value.go#L3327: return v.Uint() == u.Uint()
value.go#L3552: return makeInt(v.flag.ro(), v.Uint(), t)
value.go#L3572: return makeFloat(v.flag.ro(), float64(v.Uint()), t)
value.go#L3603: if x := v.Uint(); uint64(rune(x)) == x {
encoding/binary
binary.go#L953: e.uint8(uint8(v.Uint()))
binary.go#L955: e.uint16(uint16(v.Uint()))
binary.go#L957: e.uint32(uint32(v.Uint()))
binary.go#L959: e.uint64(v.Uint())
encoding/json
encode.go#L564: b = strconv.AppendUint(b, v.Uint(), 10)
encode.go#L994: return strconv.FormatUint(k.Uint(), 10), nil
fmt
print.go#L795: p.fmtInteger(f.Uint(), unsigned, verb)
print.go#L884: bytes[i] = byte(f.Index(i).Uint())
print.go#L949: n := v.Uint()
internal/fmtsort
sort.go#L81: return cmp.Compare(aVal.Uint(), bVal.Uint())
net/http
h2_bundle.go#L4744: return uintptr(rv.Uint())
 |
The pages are generated with Golds v0.8.4. (GOOS=linux 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |