reflect.Value.Uint (method)
32 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#L1582: 		return v.Uint() == 0
		value.go#L2743: func (v Value) Uint() uint64 {
		value.go#L3485: 		return v.Uint() == u.Uint()
		value.go#L3710: 	return makeInt(v.flag.ro(), v.Uint(), t)
		value.go#L3730: 	return makeFloat(v.flag.ro(), float64(v.Uint()), t)
		value.go#L3761: 	if x := v.Uint(); uint64(rune(x)) == x {
	database/sql/driver
		types.go#L94: 		uv := sv.Uint()
		types.go#L122: 		u64 := rv.Uint()
		types.go#L274: 		return int64(rv.Uint()), nil
		types.go#L276: 		u64 := rv.Uint()
	encoding/binary
		binary.go#L935: 		e.uint8(uint8(v.Uint()))
		binary.go#L937: 		e.uint16(uint16(v.Uint()))
		binary.go#L939: 		e.uint32(uint32(v.Uint()))
		binary.go#L941: 		e.uint64(v.Uint())
	encoding/json
		encode.go#L522: 	b = strconv.AppendUint(b, v.Uint(), 10)
		encode.go#L962: 		return strconv.FormatUint(k.Uint(), 10), nil
	fmt
		print.go#L794: 		p.fmtInteger(f.Uint(), unsigned, verb)
		print.go#L883: 						bytes[i] = byte(f.Index(i).Uint())
		print.go#L948: 				n := v.Uint()
	github.com/oapi-codegen/runtime
		styleparam.go#L416: 		output = strconv.FormatUint(v.Uint(), 10)
	internal/fmtsort
		sort.go#L81: 		return cmp.Compare(aVal.Uint(), bVal.Uint())
	net/http
		h2_bundle.go#L4596: 		return uintptr(rv.Uint())
|  | The pages are generated with Golds v0.7.6. (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. |