func strconv.ParseFloat

9 uses

	strconv (current package)
		atof.go#L695: func ParseFloat(s string, bitSize int) (float64, error) {

	encoding/json
		decode.go#L196: 	return strconv.ParseFloat(string(n), 64)
		decode.go#L830: 	f, err := strconv.ParseFloat(s, 64)
		decode.go#L1007: 			n, err := strconv.ParseFloat(string(item), v.Type().Bits())

	fmt
		scan.go#L781: 		f, err := strconv.ParseFloat(str[:p], n)
		scan.go#L799: 	f, err := strconv.ParseFloat(str, n)

	github.com/oapi-codegen/runtime
		bindstring.go#L87: 		val, err = strconv.ParseFloat(src, 64)
		deepobject.go#L309: 		val, err := strconv.ParseFloat(pathValues.value, 32)
		deepobject.go#L316: 		val, err := strconv.ParseFloat(pathValues.value, 64)