reflect.Value.Uint (method)

21 uses

	reflect (current package)
		value.go#L1107: 		return v.Uint() == 0
		value.go#L1938: func (v Value) Uint() uint64 {
		value.go#L2643: 	return makeInt(v.flag.ro(), v.Uint(), t)
		value.go#L2663: 	return makeFloat(v.flag.ro(), float64(v.Uint()), t)
		value.go#L2694: 	if x := v.Uint(); uint64(rune(x)) == x {

	encoding/binary
		binary.go#L653: 			e.uint8(uint8(v.Uint()))
		binary.go#L655: 			e.uint16(uint16(v.Uint()))
		binary.go#L657: 			e.uint32(uint32(v.Uint()))
		binary.go#L659: 			e.uint64(v.Uint())

	encoding/gob
		encode.go#L197: 	value := v.Uint()
		encode.go#L456: 		return val.Uint() == 0

	encoding/json
		encode.go#L350: 		return v.Uint() == 0
		encode.go#L563: 	b := strconv.AppendUint(e.scratch[:0], v.Uint(), 10)
		encode.go#L1022: 		w.s = strconv.FormatUint(w.v.Uint(), 10)

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

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

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

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