Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkParseFloatSmallExp (0.6 sec)

  1. src/math/big/floatconv_test.go

    		}
    
    		if got := fmt.Sprintf(test.format, value); got != test.want {
    			t.Errorf("%v: got %q; want %q", test, got, test.want)
    		}
    	}
    }
    
    func BenchmarkParseFloatSmallExp(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		for _, s := range []string{
    			"1e0",
    			"1e-1",
    			"1e-2",
    			"1e-3",
    			"1e-4",
    			"1e-5",
    			"1e-10",
    			"1e-20",
    			"1e-50",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
Back to top