reflect.Value.Uint (method)

22 uses

	reflect (current package)
		deepequal.go#L162: 		return v1.Uint() == v2.Uint()
		value.go#L1589: 		return v.Uint() == 0
		value.go#L2675: func (v Value) Uint() uint64 {
		value.go#L3419: 		return v.Uint() == u.Uint()
		value.go#L3644: 	return makeInt(v.flag.ro(), v.Uint(), t)
		value.go#L3664: 	return makeFloat(v.flag.ro(), float64(v.Uint()), t)
		value.go#L3695: 	if x := v.Uint(); uint64(rune(x)) == x {

	encoding/binary
		binary.go#L727: 			e.uint8(uint8(v.Uint()))
		binary.go#L729: 			e.uint16(uint16(v.Uint()))
		binary.go#L731: 			e.uint32(uint32(v.Uint()))
		binary.go#L733: 			e.uint64(v.Uint())

	encoding/json
		encode.go#L313: 		return v.Uint() == 0
		encode.go#L523: 	b = strconv.AppendUint(b, v.Uint(), 10)
		encode.go#L957: 		w.ks = strconv.FormatUint(w.k.Uint(), 10)

	fmt
		print.go#L794: 		p.fmtInteger(f.Uint(), unsigned, verb)
		print.go#L885: 						bytes[i] = byte(f.Index(i).Uint())
		print.go#L950: 				n := v.Uint()

	internal/fmtsort
		sort.go#L95: 		a, b := aVal.Uint(), bVal.Uint()

	net/http
		h2_bundle.go#L4537: 		return uintptr(rv.Uint())