reflect.Value.SetUint (method)

15 uses

	reflect (current package)
		value.go#L2260: func (v Value) SetUint(x uint64) {

	database/sql
		convert.go#L451: 		dv.SetUint(u64)

	encoding/binary
		binary.go#L583: 		v.SetUint(uint64(d.uint8()))
		binary.go#L585: 		v.SetUint(uint64(d.uint16()))
		binary.go#L587: 		v.SetUint(uint64(d.uint32()))
		binary.go#L589: 		v.SetUint(d.uint64())

	encoding/json
		decode.go#L1021: 			v.SetUint(n)

	encoding/xml
		read.go#L630: 			dst.SetUint(0)
		read.go#L637: 		dst.SetUint(utmp)

	fmt
		scan.go#L1030: 			v.SetUint(s.scanUint(verb, v.Type().Bits()))
		scan.go#L1042: 				v.Index(i).SetUint(uint64(str[i]))

	github.com/go-pg/pg/v10/types
		scan_value.go#L217: 	v.SetUint(num)

	github.com/vmihailenco/msgpack/v5
		decode_number.go#L293: 	v.SetUint(n)

	text/template
		exec.go#L929: 		value.SetUint(n.Uint64)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L289: 		reflect.ValueOf(out).Elem().SetUint(u)