func strconv.ParseFloat

8 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#L828: 	f, err := strconv.ParseFloat(s, 64)
		decode.go#L1005: 			n, err := strconv.ParseFloat(s, v.Type().Bits())

	flag
		flag.go#L265: 	v, err := strconv.ParseFloat(s, 64)

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

	github.com/go-faster/jx
		dec_float.go#L276: 	val, err := strconv.ParseFloat(string(str), size)