func strconv.AppendFloat

18 uses

	strconv (current package)
		ftoa.go#L53: func AppendFloat(dst []byte, f float64, fmt byte, prec, bitSize int) []byte {

	database/sql
		convert.go#L528: 		return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 32), true
		convert.go#L530: 		return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 64), true

	encoding/json
		encode.go#L595: 	b = strconv.AppendFloat(b, f, fmt, -1, int(bits))

	encoding/xml
		marshal.go#L864: 				if err := emit(p, strconv.AppendFloat(scratch[:0], vf.Float(), 'g', -1, vf.Type().Bits())); err != nil {

	fmt
		format.go#L496: 	num := strconv.AppendFloat(f.intbuf[:1], v, byte(verb), prec, size)

	github.com/aws/aws-sdk-go/private/protocol/json/jsonutil
		build.go#L215: 		buf.Write(strconv.AppendFloat(scratch[:0], f, 'f', -1, 64))

	github.com/go-redis/redis/v8/internal
		arg.go#L39: 		return strconv.AppendFloat(b, float64(v), 'f', -1, 64)
		arg.go#L41: 		return strconv.AppendFloat(b, v, 'f', -1, 64)

	github.com/go-redis/redis/v8/internal/proto
		writer.go#L144: 	w.numBuf = strconv.AppendFloat(w.numBuf[:0], f, 'f', -1, 64)

	github.com/lib/pq
		array.go#L258: 		b = strconv.AppendFloat(b, a[0], 'f', -1, 64)
		array.go#L261: 			b = strconv.AppendFloat(b, a[i], 'f', -1, 64)
		encode.go#L33: 		return strconv.AppendFloat(nil, v, 'f', -1, 64)
		encode.go#L140: 		return strconv.AppendFloat(buf, v, 'f', -1, 64)

	github.com/prometheus/common/expfmt
		text_create.go#L450: 		*bp = strconv.AppendFloat((*bp)[:0], f, 'g', -1, 64)

	google.golang.org/api/googleapi
		types.go#L149: 		return strconv.AppendFloat(dst, q[i], 'g', -1, 64)

	google.golang.org/protobuf/internal/encoding/json
		encode.go#L165: 	out = strconv.AppendFloat(out, n, fmt, -1, bitSize)

	google.golang.org/protobuf/internal/encoding/text
		encode.go#L193: 		return strconv.AppendFloat(out, n, 'g', -1, bitSize)