func strconv.FormatFloat

7 uses

	strconv (current package)
		ctoa.go#L21: 	im := FormatFloat(imag(c), fmt, prec, bitSize)
		ctoa.go#L26: 	return "(" + FormatFloat(real(c), fmt, prec, bitSize) + im + "i)"
		ftoa.go#L47: func FormatFloat(f float64, fmt byte, prec, bitSize int) string {

	encoding/json
		encode.go#L532: 		e.error(&UnsupportedValueError{v, strconv.FormatFloat(f, 'g', -1, int(bits))})

	github.com/golang-jwt/jwt/v5
		types.go#L69: 	nanosecondsOffset := strconv.FormatFloat(float64(truncatedDate.Nanosecond())/float64(time.Second), 'f', prec, 64)

	github.com/oapi-codegen/runtime
		styleparam.go#L418: 		output = strconv.FormatFloat(v.Float(), 'f', -1, 64)
		styleparam.go#L420: 		output = strconv.FormatFloat(v.Float(), 'f', -1, 32)