func strconv.FormatFloat

7 uses

	strconv (current package)
		number.go#L189: func FormatFloat(f float64, fmt byte, prec, bitSize int) string {

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

	github.com/gotd/log
		attr.go#L118: 		return strconv.FormatFloat(math.Float64frombits(v.num), 'g', -1, 64)

	go.opentelemetry.io/otel/attribute
		value.go#L599: 		return strconv.FormatFloat(v, 'g', -1, 64)

	go.opentelemetry.io/otel/trace/internal/telemetry
		value.go#L315: 		return strconv.FormatFloat(v.asFloat64(), 'g', -1, 64)

	go.uber.org/atomic
		float32_ext.go#L75: 	return strconv.FormatFloat(float64(f.Load()), 'g', -1, 32)
		float64_ext.go#L75: 	return strconv.FormatFloat(f.Load(), 'g', -1, 64)