Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 00000000000000011102230246251565404236316680908203126 (0.44 sec)

  1. src/math/big/ratconv_test.go

    	// Exactly halfway between 1 and math.Nextafter(1, 2).
    	// Round to even (down).
    	"1.00000000000000011102230246251565404236316680908203125",
    	// Slightly lower; still round down.
    	"1.00000000000000011102230246251565404236316680908203124",
    	// Slightly higher; round up.
    	"1.00000000000000011102230246251565404236316680908203126",
    	// Slightly higher, but you have to read all the way to the end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. src/strconv/atof_test.go

    	{"0x1.000000000000081p0", "1.0000000000000002", nil},
    	{"0x1.00000000000009p0", "1.0000000000000002", nil},
    	// Slightly higher, but you have to read all the way to the end.
    	{"1.00000000000000011102230246251565404236316680908203125" + strings.Repeat("0", 10000) + "1", "1.0000000000000002", nil},
    	{"0x1.00000000000008" + strings.Repeat("0", 10000) + "1p0", "1.0000000000000002", nil},
    
    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