func strconv.ParseFloat

12 uses

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

	encoding/json
		decode.go#L195: 	return strconv.ParseFloat(string(n), 64)
		decode.go#L836: 	f, err := strconv.ParseFloat(s, 64)
		decode.go#L1013: 			n, err := strconv.ParseFloat(s, v.Type().Bits())

	flag
		flag.go#L248: 	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)

	src.elv.sh/pkg/eval
		builtin_fn_misc.go#L402: 		f, err := strconv.ParseFloat(duration, 64)

	src.elv.sh/pkg/eval/vals
		conversion.go#L126: 		f, err := strconv.ParseFloat(arg, 64)
		num.go#L61: 	if f, err := strconv.ParseFloat(s, 64); err == nil {

	src.elv.sh/pkg/store
		dir.go#L29: 	f, _ := strconv.ParseFloat(string(data), 64)

	src.elv.sh/pkg/testutil
		scaled_ms.go#L24: 	scale, err := strconv.ParseFloat(env, 64)