Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bigFtoa (0.07 sec)

  1. src/strconv/ftoa.go

    			ryuFtoaFixed64(&digs, mant, exp-int(flt.mantbits), digits)
    			ok = true
    		}
    	}
    	if !ok {
    		return bigFtoa(dst, prec, fmt, neg, mant, exp, flt)
    	}
    	return formatDigits(dst, shortest, neg, digs, prec, fmt)
    }
    
    // bigFtoa uses multiprecision computations to format a float.
    func bigFtoa(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
    	d := new(decimal)
    	d.Assign(mant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top