Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/strconv/atof_test.go

    			t.Errorf("ParseFloat(%v, 32) = %v, %v want %v, %v  # %v",
    				test.in, out32, err, test.out, test.err, out)
    		}
    	}
    	SetOptimize(oldopt)
    }
    
    func TestAtof(t *testing.T) { testAtof(t, true) }
    
    func TestAtofSlow(t *testing.T) { testAtof(t, false) }
    
    func TestAtofRandom(t *testing.T) {
    	initAtof()
    	for _, test := range atofRandomTests {
    		x, _ := ParseFloat(test.s, 64)
    		switch {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
Back to top