Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fcnCount (0.12 sec)

  1. src/math/big/floatconv.go

    	exp5 := int64(0)
    
    	// determine binary or decimal exponent contribution of radix point
    	if fcount < 0 {
    		// The mantissa has a radix point ddd.dddd; and
    		// -fcount is the number of digits to the right
    		// of '.'. Adjust relevant exponent accordingly.
    		d := int64(fcount)
    		switch b {
    		case 10:
    			exp5 = d
    			fallthrough // 10**e == 5**e * 2**e
    		case 2:
    			exp2 += d
    		case 8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top