reflect.Type.Bits (method)

7 uses

	reflect (current package)
		type.go#L139: 	Bits() int

	encoding/json
		decode.go#L1014: 			n, err := strconv.ParseFloat(string(item), v.Type().Bits())

	fmt
		scan.go#L1028: 			v.SetInt(s.scanInt(verb, v.Type().Bits()))
		scan.go#L1030: 			v.SetUint(s.scanUint(verb, v.Type().Bits()))
		scan.go#L1047: 			v.SetFloat(s.convertFloat(s.floatToken(), v.Type().Bits()))
		scan.go#L1049: 			v.SetComplex(s.scanComplex(verb, v.Type().Bits()))

	github.com/google/go-cmp/cmp
		report_slices.go#L287: 			switch t.Elem().Bits() {