math/big.Float.Text (method)

8 uses

	math/big (current package)
		float.go#L378: 		panic(fmt.Sprintf("msb not set in last word %#x of %s", x.mant[m-1], x.Text('p', 0)))
		ftoa.go#L47: func (x *Float) Text(format byte, prec int) string {
		ftoa.go#L58: 	return x.Text('g', 10)

	github.com/aws/smithy-go/encoding/httpbinding
		header.go#L115: 	h.modifyHeader(v.Text('e', -1))
		query.go#L106: 	qv.updateKey(v.Text('e', -1))
		uri.go#L93: 	return u.modifyURI(v.Text('e', -1))

	github.com/aws/smithy-go/encoding/xml
		value.go#L188: 	xv.w.Write([]byte(v.Text('e', -1)))

	go/constant
		value.go#L255: func (x floatVal) ExactString() string { return x.val.Text('p', 0) }