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)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |