reflect.Value.Uint (method)

68 uses

	reflect (current package)
		deepequal.go#L162: 		return v1.Uint() == v2.Uint()
		value.go#L1527: 		return v.Uint() == 0
		value.go#L2493: func (v Value) Uint() uint64 {
		value.go#L3280: 	return makeInt(v.flag.ro(), v.Uint(), t)
		value.go#L3300: 	return makeFloat(v.flag.ro(), float64(v.Uint()), t)
		value.go#L3331: 	if x := v.Uint(); uint64(rune(x)) == x {

	database/sql
		convert.go#L510: 		return strconv.FormatUint(rv.Uint(), 10)
		convert.go#L526: 		return strconv.AppendUint(buf, rv.Uint(), 10), true

	database/sql/driver
		types.go#L90: 		uv := sv.Uint()
		types.go#L118: 		u64 := rv.Uint()
		types.go#L269: 		return int64(rv.Uint()), nil
		types.go#L271: 		u64 := rv.Uint()

	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/json
		encode.go#L350: 		return v.Uint() == 0
		encode.go#L563: 	b := strconv.AppendUint(e.scratch[:0], v.Uint(), 10)
		encode.go#L1024: 		w.ks = strconv.FormatUint(w.k.Uint(), 10)

	encoding/xml
		marshal.go#L763: 		return strconv.FormatUint(val.Uint(), 10), nil, nil
		marshal.go#L864: 				if err := emit(p, strconv.AppendUint(scratch[:0], vf.Uint(), 10)); err != nil {
		marshal.go#L1055: 		return v.Uint() == 0

	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()

	github.com/go-pg/pg/v10/orm
		table.go#L1439: 	return strconv.AppendInt(b, int64(v.Uint()), 10)
		table.go#L1443: 	return strconv.AppendInt(b, int64(v.Elem().Uint()), 10)

	github.com/go-pg/pg/v10/types
		append_value.go#L155: 	return strconv.AppendUint(b, v.Uint(), 10)

	github.com/go-pg/zerochecker
		zerochecker.go#L107: 	return v.Uint() == 0

	github.com/google/go-cmp/cmp
		compare.go#L275: 		s.report(vx.Uint() == vy.Uint(), 0)
		report_reflect.go#L168: 		return textLine(fmt.Sprint(v.Uint()))
		report_reflect.go#L171: 			return textLine(formatHex(v.Uint()))
		report_reflect.go#L173: 		return textLine(fmt.Sprint(v.Uint()))
		report_reflect.go#L175: 		return textLine(formatHex(v.Uint()))
		report_slices.go#L271: 					ss = append(ss, formatHex(v.Index(i).Uint()))
		report_slices.go#L307: 						ss = append(ss, fmt.Sprint(v.Index(i).Uint()))
		report_slices.go#L309: 						ss = append(ss, formatHex(v.Index(i).Uint()))

	github.com/google/go-cmp/cmp/internal/value
		sort.go#L43: 		return x.Uint() < y.Uint()

	github.com/vmihailenco/msgpack/v5
		encode_number.go#L207: 	return e.EncodeUint(v.Uint())
		encode_number.go#L215: 	return e.encodeUint8Cond(uint8(v.Uint()))
		encode_number.go#L219: 	return e.encodeUint16Cond(uint16(v.Uint()))
		encode_number.go#L223: 	return e.encodeUint32Cond(uint32(v.Uint()))
		encode_number.go#L227: 	return e.encodeUint64Cond(v.Uint())
		types.go#L343: 		return v.Uint() == 0

	golang.org/x/net/http2
		server.go#L720: 		return uintptr(rv.Uint())

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L236: 			isZero = rv.Uint() == 0

	google.golang.org/protobuf/internal/impl
		codec_map.go#L294: 			return keys[i].Uint() < keys[j].Uint()
		convert.go#L227: 	return protoreflect.ValueOfUint32(uint32(v.Uint()))
		convert.go#L251: 	return protoreflect.ValueOfUint64(uint64(v.Uint()))
		message_reflect_field.go#L290: 				return rv.Uint() != 0
		message_reflect_field.go#L516: 		return v.Uint() == 0

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

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

	text/template
		exec.go#L337: 		truth = val.Uint() != 0
		funcs.go#L192: 		x = int64(index.Uint())
		funcs.go#L459: 				truth = arg1.Int() >= 0 && uint64(arg1.Int()) == arg.Uint()
		funcs.go#L461: 				truth = arg.Int() >= 0 && arg1.Uint() == uint64(arg.Int())
		funcs.go#L480: 				truth = arg1.Uint() == arg.Uint()
		funcs.go#L523: 			truth = arg1.Int() < 0 || uint64(arg1.Int()) < arg2.Uint()
		funcs.go#L525: 			truth = arg2.Int() >= 0 && arg1.Uint() < uint64(arg2.Int())
		funcs.go#L540: 			truth = arg1.Uint() < arg2.Uint()