type strconv.floatInfo
11 uses
strconv (current package)
atof.go#L314: func (d *decimal) floatBits(flt *floatInfo) (b uint64, overflow bool) {
atof.go#L497: func atofHex(s string, flt *floatInfo, mantissa uint64, exp int, neg, trunc bool) (float64, error) {
extfloat.go#L133: func (f *extFloat) AssignComputeBounds(mant uint64, exp int, neg bool, flt *floatInfo) (lower, upper extFloat) {
ftoa.go#L16: type floatInfo struct {
ftoa.go#L22: var float32info = floatInfo{23, 8, -127}
ftoa.go#L23: var float64info = floatInfo{52, 11, -1023}
ftoa.go#L59: var flt *floatInfo
ftoa.go#L161: func bigFtoa(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
ftoa.go#L234: func roundShortest(d *decimal, mant uint64, exp int, flt *floatInfo) {
ftoa.go#L466: func fmtB(dst []byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
ftoa.go#L489: func fmtX(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |