Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 68f (0.28 sec)

  1. src/fmt/fmt_test.go

    	// Precision has no effect for binary float format.
    	{"%.4b", float32(1.0), "8388608p-23"},
    	{"%.4b", -1.0, "-4503599627370496p-52"},
    	// Test correct f.intbuf boundary checks.
    	{"%.68f", 1.0, zeroFill("1.", 68, "")},
    	{"%.68f", -1.0, zeroFill("-1.", 68, "")},
    	// float infinites and NaNs
    	{"%f", posInf, "+Inf"},
    	{"%.1f", negInf, "-Inf"},
    	{"% f", NaN, " NaN"},
    	{"%20f", posInf, "                +Inf"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top